I am doing
var tag = $("#foo");
if(tag != null) {
// do something
}
the thing is, if even if the tag does not exist when the script is first executed, the value of tag variable is non-null and hence it breaks the code.
Why is it happening?
|
I am doing
the thing is, if even if the tag does not exist when the script is first executed, the value of tag variable is non-null and hence it breaks the code. Why is it happening? |
|||
|
|
|
jQuery selectors never return null - you get an empty jQuery collection. You can test for:
Even better, if all you do is simple jQuery operations you don't have to check the result at all - operations on an empty fail silently to allow chaining:
|
|||
|
|
|
You would have to check the For a better way, you can refer to this Stackoverflow thread. |
|||
|
|
|
you can also do the same thing by using size..
|
|||
|
|