If one of two elements exists, do something

I currently do this to check if one of two elements exists:

if ($(".element1").length > 0 || $(".element2").length > 0) {
  //do stuff...
}

Is there a better way to rewrite the same? I mean, is .length the same as .length > 0?


if ($(".element1").is('*') || $(".element2").is('*')) {
    // code
}

EDIT (per comment) Select elements by multiple classes in one call:

if ($(".element1, .element2").is('*')) {
    // code
}

if ( $('#myDiv')[0] ) { //do something }

..works best!

Found here.


All jQuery elements have the .length property. You can just go:

if ($('img').length) // Implies: If this element exists..

http://jqueryfordesigners.com/element-exists/