I aways check for elements with jQuery this way:
var x = $("div.myElement");
if (x.length > 0) {
x.show();
}
But I really don't like that if. Is there any way to do it more simple?
|
I aways check for elements with jQuery this way:
But I really don't like that |
||||
|
|
|
The answer arrives directly from the jQuery FAQ. And is always good remember: search before posting, the jQuery Documentation is so easy and whilst so complete. Use the
Another important thing which is also on the FAQ: it isn't always necessary to test whether an element exists. If you code just |
|||||||||||||||
|
|
You can do this :
Or :
|
|||||||
|