/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(function () { if ($.browser.msie) { $('input:radio').click(function () { this.blur(); this.focus(); }); $('input:checkbox').click(function () { this.blur(); this.focus(); }); } });
URL: http://norman.walsh.name/2009/03/24/jQueryIE