I have some radios in my page,and I want to do something when the checked radio changes,however the code does not work in IE:
$(\'input:radio\').change(...);
This code worked for me:
$(function(){ $('input:radio').change(function(){ alert('changed'); }); });
http://jsfiddle.net/3q29L/