.change() notification fix for IE


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $(function () {
  2.  
  3. if ($.browser.msie) {
  4.  
  5. $('input:radio').click(function () {
  6. this.blur();
  7. this.focus();
  8. });
  9.  
  10. $('input:checkbox').click(function () {
  11. this.blur();
  12. this.focus();
  13. });
  14.  
  15. }
  16. });

URL: http://norman.walsh.name/2009/03/24/jQueryIE

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.