I am trying to prevent a user from changing the state of a radio button using jquery or javascript. I could do this with the disabled property but I don\'t like the grayed o
How about
or
$(document).ready(function () { $(input[type = "radio"]).click(function () { return false; }); });
?