I want to check if the element I click (this) has a specific attribute, as a condition in the if clause. Is it possible to do this with JavaScript or jQuery?
Thanks
|
I want to check if the element I click (this) has a specific attribute, as a condition in the if clause. Is it possible to do this with JavaScript or jQuery? Thanks | ||||
feedback
|
|
In JavaScript, anything that is
Also, if you need the value from the attribute you can do this:
| |||||
feedback
|
|
I will give the non-jQuery answer, just for kicks and giggles.
Documentation: https://developer.mozilla.org/en/DOM/element.hasAttribute | |||
|
feedback
|
|
You mean something like this?\
| |||
|
feedback
|
|
If you are after an HTML attribute, then getAttribute is the only reasonably reliable way to go, noting that it has quirks in IE. If you are just after a DOM property, then simply:
will probably do. The test returns false if foo is set to the number zero (0), empty string, null, NaN or undefined. So it doesn't actually tell you if the element has that property, only that attempting to access it returns a falsey value. But that is usually sufficient. | |||
|
feedback
|