How to properly enable/disable input field on click with jQuery?
I was experimenting with:
$("#FullName").removeAttr('disabled');
which removes disabled="disabled" from this input field:
<input id="FullName" style="width: 299px" value="Marko" disabled="disabled" />
But how to add it again with click on another button or how to disable input field on click?
 
     
     
     
     
     
     
    