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.
|
You can always have a look at the source code. In case of
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 |
||||
|
|
detach()twice and see whether you get an error. – Felix Kling Jul 9 '11 at 11:00