jqueryHow do I remove an attribute using jQuery?
jQuery provides an easy way to remove attributes from HTML elements. To remove an attribute using jQuery, you can use the removeAttr() method.
Example code
$('#myElement').removeAttr('disabled');
This code will remove the disabled attribute from the element with the ID myElement.
The code consists of two parts:
$('#myElement')- this part selects the element with the IDmyElement.removeAttr('disabled')- this part removes thedisabledattribute from the selected element.
For more information, see the jQuery API Documentation.
More of Jquery
- How do I use jQuery to zip files?
- How do I use jQuery to zoom an image when it is clicked?
- How can I get the y position of an element using jQuery?
- How do I download a zip file using jQuery?
- How can I use JQuery with Yii2?
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How can I use jQuery to select elements with an XPath expression?
- How do I use jQuery to validate a form?
- How do I create a quiz using the jQuery plugin?
- How do I use jQuery to zoom in on an image?
See more codes...