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(...);
Try
$(document).ready(
instead of
$('document').ready(
or you can use a shorthand form
$(function(){ });