In Mootools, I'd just run if ($('target')) { ... }. Does if ($('#target')) { ... } in jQuery work the same way?
|
|
||||
|
|
|
As the other commenters are suggesting the most efficient way to do it seems to be:
If you absolutely must have an exists() function - which will be slower- you can do:
Then in your code you can use
As answered here |
|||||||||||||||||
|
|
no, jquery always returns a jquery object regardless if a selector was matched or not. You need to use .length
|
|||
|
|
|
if you used:
you would imply that chaining was possible when it is not. This would be better
|
|||
|
|
|
Yet another way:
|
|||
|
|
||||
|
|
I think most of the people replying here didn't quite understand the question, or else I might be mistaken. The question is "how to check whether or not a selector exists in jQuery." Most people have taken this for "how to check whether an element exists in the DOM using jQuery." Hardly interchangeable. jQuery allows you to create custom selectors, but see here what happens when you try to use on e before initializing it;
After running into this, I realized it was simply a matter of checking
Cheers. |
||||
|
|
|
I prefer the
Which basically checks if this elements is a kind of "*" (any element). Just a cleaner syntax and the "is" makes more sense inside an "if" |
|||
|
|
Useful plug-in for jQuery I made for this type of thing:
Of course this plugin could be further extended to be much more fancy (handling multiple calls at once, creating non-existing elements based on a pram), but as it stand now, it does a very simple, very needed function ... Does this element exist? return |
|||
|
|
|
For me
|
|||||
|
