How to properly enable/disable input field on click with jQuery?
I was experimenting with:
$(\"#FullName\").removeAttr(\'disabled\');
To toggle a field between disabled and enabled, try this:
$('#toggle_button').click(function () { $('#FullName').prop("disabled", function (i, val) { return !val; }); })