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
Try this
$(document).ready(function () { $('input[type = "radio"]').change(function () { return false; }); });