How can I add an attribute into specific HTML tags in jQuery?
For example, like this simple HTML:
<input id="someid" />
Then adding an attribute disabled="true" like this:
<input id="someid" disabled="true" />
|
How can I add an attribute into specific HTML tags in jQuery? For example, like this simple HTML:
Then adding an attribute disabled="true" like this:
|
||||
|
|
You can add attributes using
However, for DOM properties like
|
|||||
|
|
best solution: from jQuery v1.6 you can use prop() to add a property
to remove use removeProp()
from reference
|
||||
|
|
|
You can do this with jQuery's
|
|||
|
|