
How can we enable/disable an element in JQuery ?

For enabling/disabling element,you can set the 'disabled' attribute to true or false:
//Disable element
$('#element1').attr('disabled', true);
//Enable element
$('#element1').attr('disabled', false);
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.