Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I determine if an element exists on a page... for instance...

$('select[name="modifier_option"]')

If that select box exists on the screen I need to validate it's value on the page to ensure it's value is > 0, but if it doesn't exist I don't need to worry about it.

share|improve this question

2 Answers

up vote 4 down vote accepted
    if( $('select[name="modifier_option"]').length )
{
     // it exists
}
share|improve this answer

copy/paste from here: Is there an "exists" function for jQuery

jQuery.fn.exists = function(){return jQuery(this).length>0;}

if ($(selector).exists()) {
    // Do something
}
share|improve this answer
2  
Read the comments below that answer. if ($(selector).length) is a better solution. – Šime Vidas Nov 23 '10 at 16:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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