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

link|improve this question
What exactly do you want? Do you want to test whether an attribute exists or whether it is empty? Which attribute? – Felix Kling Mar 30 '11 at 14:15
feedback

4 Answers

In JavaScript, anything that is null or undefined (or even an empty string) is implicitly "false" so you can do this (assuming that you were referring to a HTML attribute using jQuery):

if ($(this).attr('foo')) {

}

Also, if you need the value from the attribute you can do this:

var foo;
if (foo = $(this).attr('foo')) {
    // use "foo" in here
}
link|improve this answer
Hard to recommend either of those. jQuery munges attribuets and properties so if the OP specifically wants the HTML attribute, getAttribute should be used. In the first bit of code: if (this.foo) is simpler and more efficient. In the second, don't do the assignment in the condition when the obvious place is when declaring the variable. var foo = this.foo; if (foo) { ... } – RobG Mar 30 '11 at 23:55
should be checked if === 'undefined' because the attribute could well be existed and it can be an empty string – vsync Oct 18 '11 at 8:21
feedback

I will give the non-jQuery answer, just for kicks and giggles.

this.hasAttribute("foo")

Documentation: https://developer.mozilla.org/en/DOM/element.hasAttribute

link|improve this answer
Noting that hasAttribute is not supported by IE (<9?). – RobG Mar 30 '11 at 23:45
feedback

You mean something like this?\

if ($.trim($(this).attr('attribute')) != '') 
{ ... }
link|improve this answer
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:

  if (this.foo) {
    ...
  }

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.