How to check an object is exist with jquery

This is simple post…
If you try using object selector to make it work, you are wrong.

if($('#myObject')) {
     //do something
 }

 

Well, the right code is

 if($('#myObject').length > 0) {
     //do something
 }

That’s it

Leave a comment