/ Published in: jQuery
URL: http://norman.walsh.name/2009/03/24/jQueryIE
Expand |
Embed | Plain Text
$(function () { if ($.browser.msie) { $('input:radio').click(function () { this.blur(); this.focus(); }); $('input:checkbox').click(function () { this.blur(); this.focus(); }); } });
You need to login to post a comment.
