DCSIMG
Hack - Client-Side with Basil Goldman

Browse by Tags

20 July 2011
radio button - jQuery .change() event not working in IE 6, 7
IE < 8 Hack for radio button jQuery .change() event. /* * hack for radio button change event * @author : basil.goldman@gmail.com */ if ($.browser.msie && $.browser.version < 8) { $( 'input[type=radio],[type=checkbox]' ).live( 'click' , function () { $( this ).trigger( 'change'... Read More...