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

I see many people check to see if a DOM element exists before assigning an event, for example (coffeescript):

$ -> 
    if( $("#progressbar").length > 0 ) 
        $("#progressbar").progressbar( value: 0 )

Is this necessary? If we just add the event anyways, whether the element exists or not, is there a performance hit?

share|improve this question
2  
Is that jQuery? – Derek 朕會功夫 Jun 10 '12 at 19:02
i would think you would get an error first, no? – thescientist Jun 10 '12 at 19:10
It's converted from Coffeescript to straight javascript. I guess the error doesn't appear because this event is loaded without user interaction (see gabrielhilal's answer below). – Craig Knox Jun 12 '12 at 20:47

1 Answer

up vote 5 down vote accepted

Every method call in jQuery is wrapped in a .each function, so checking if an element exists is usually not necessary - there will be no iterations of the called function if the set is empty, it fails silently. The example given is a good example of that, there's no harm or performance penalty in just calling $('#progressbar').progressbar() directly.

When you do want to do that, probably because you're manipulating the DOM or doing some expensive operation depending on the presence of an element, make sure you cache the call, specially if it's a complex selector:

specialThings = $('section .special')

if specialThings.length > 0
    doStuffWith specialThings

or alternatively, taking advantage of coffeescript's var safety:

if (specialThings = $ 'section .special').length
    doStuffWith specialThings
share|improve this answer
That makes sense, thanks! – Craig Knox Jun 12 '12 at 20:48

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.