Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Should i make such check, before detaching?

if(for_detach.parent().length) {for_detach.detach();}

or jquery automatically do it?

Thanks ;)

Update

Same with wr.find('iframe:hidden').show(); and different others situations.

share|improve this question
Why don't you just try it? – Felix Kling Jul 9 '11 at 10:55
How? How i will check it? :) – Somebody Jul 9 '11 at 10:59
Run detach() twice and see whether you get an error. – Felix Kling Jul 9 '11 at 11:00
I won't get an error. But probably more unwanted actions inside framework. – Somebody Jul 9 '11 at 11:00

1 Answer

up vote 1 down vote accepted

You can always have a look at the source code.

In case of detach:

detach: function( selector ) {
    return this.remove( selector, true );
},

// keepData is for internal use only--do not document
remove: function( selector, keepData ) {
    for ( var i = 0, elem; (elem = this[i]) != null; i++ ) {
        if ( !selector || jQuery.filter( selector, [ elem ] ).length ) {
            if ( !keepData && elem.nodeType === 1 ) {
                jQuery.cleanData( elem.getElementsByTagName("*") );
                jQuery.cleanData( [ elem ] );
            }

            if ( elem.parentNode ) {
                elem.parentNode.removeChild( elem );
            }
        }
    }

    return this;
},

So yes, jQuery will make sure that there is a parent before it detaches from it, but it does not ignore the call.

It depends on the function whether calling it twice has any effect.

Of course if you call show twice then the second call will not have any (visible) effect. But that does not mean that jQuery is not doing anything in the back. Have a look at the show implementation.

share|improve this answer
Thanks mate. It seems it's time for me to dig sources. :) – Somebody Jul 9 '11 at 11:12

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.