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 ID- myElement.
- removeAttr('disabled')- this part removes the- disabledattribute from the selected element.
For more information, see the jQuery API Documentation.
More of Jquery
- How do I use jQuery to zoom in or out on an element?
- How can I make a jQuery XMLHttpRequest?
- How do I use the jQuery window load function?
- How do I create a jQuery widget?
- How do I use a jQuery UI Slider?
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How do I create a jQuery Yes/No dialog?
- How do I use jQuery to zip files?
- How can I prevent jQuery XSS vulnerabilities?
- How do I download a zip file using jQuery?
See more codes...