How to properly enable/disable input field on click with jQuery?
I was experimenting with:
$(\"#FullName\").removeAttr(\'disabled\');
This should do it.
$("#FullName").attr('disabled', 'disabled');
Shiplu is correct, but use this if you have are not using jquery 1.6+