How to check null objects in jQuery

JavascriptJqueryDomObjectNull

Javascript Problem Overview


I'm using jQuery and I want to check the existence of an element in my page. I have written following code, but it's not working:

if($("#btext" + i) != null) {
    //alert($("#btext" + i).text());
	$("#btext" + i).text("Branch " + i);
}

How do I check the existence of the element?

Javascript Solutions


Solution 1 - Javascript

Check the jQuery FAQ...

You can use the length property of the jQuery collection returned by your selector:

if ( $('#myDiv').length ){}

Solution 2 - Javascript

(Since I don't seem to have enough reputation to vote down the answer...)

Wolf wrote: > Calling length property on undefined > or a null object will cause IE and > webkit browsers to fail! > > Instead try this: > > // NOTE!! THE FOLLOWING IS WRONG; DO NOT USE! -- EleotleCram > if($("#something") !== null){ > // do something > } > > or > > // NOTE!! THE FOLLOWING IS WRONG; DO NOT USE! -- EleotleCram > if($("#something") === null){ > // don't do something > }

While it is true that calling the length property on an undefined or null object will cause browsers to fail, the result of jQuery's selectors (the $('...')) will never be null or undefined. Thus the code suggestions make no sense. Use one of the other answers, they make more sense.


(Update 2012) Because people look at code and this answer is pretty high up the list: For the last couple of years, I have been using this small plugin:

  jQuery.fn['any'] = function() {
     return (this.length > 0);
  };

I think $('div').any() reads better than $('div').length, plus you won't suffer as much from typos: $('div').ayn() will give a runtime error, $('div').lenght will silently most likely always be falsy.

__
Edits november 2012:

  1. Because people tend to look at code and not read what is said around the code, I added two big caveat lector notes to the quoted code of Wolf.
  2. I added code of the small plugin I use for this situation.

Solution 3 - Javascript

The lookup function returns an array of matching elements. You could check if the length is zero. Note the change to only look up the elements once and reuse the results as needed.

var elem = $("#btext" + i);
if (elem.length != 0) {
   elem.text("Branch " + i);
}

Also, have you tried just using the text function -- if no element exists, it will do nothing.

$("#btext" + i).text("Branch " + i);

Solution 4 - Javascript

jquery $() function always return non null value - mean elements matched you selector cretaria. If the element was not found it will return an empty array. So your code will look something like this -

if ($("#btext" + i).length){
        //alert($("#btext" + i).text());
    $("#btext" + i).text("Branch " + i);
}

Solution 5 - Javascript

no matter what you selection is the function $() always returns a jQuery object so that cant be used to test. The best way yet (if not the only) is to use the size() function or the native length property as explained above.

if ( $('selector').size() ) {...}                   

Solution 6 - Javascript

In jQuery 1.4 you get the $.isEmptyObject function, but if you are forced to use an older version of jQ like us poor Drupal developers just steal use this code:

// This is a function similar to the jQuery 1.4 $.isEmptyObject.
function isObjectEmpty(obj) {
  for ( var name in obj ) {
    return false;
  }
  return true;
}

Use it like:

console.log(isObjectEmpty(the_object)); // Returns true or false.

Solution 7 - Javascript

What about using "undefined"?

if (value != undefined){ // do stuff } 

Solution 8 - Javascript

if ( $('#whatever')[0] ) {...}

The jQuery object which is returned by all native jQuery methods is NOT an array, it is an object with many properties; one of them being a "length" property. You can also check for size() or get(0) or get() - 'get(0)' works the same as accessing the first element, i.e. $(elem)[0]

Solution 9 - Javascript

use $("#selector").get(0) to check with null like that. get returns the dom element, until then you re dealing with an array, where you need to check the length property. I personally don't like length check for null handling, it confuses me for some reason :)

Solution 10 - Javascript

Using the length property you can do this.

jQuery.fn.exists = function(){return ($(this).length < 0);}
if ($(selector).exists()) { 
   //do somthing
}

Solution 11 - Javascript

when the object is empty return this error:

Uncaught TypeError: Cannot read property '0' of null

I try this code :

try{
  if ($("#btext" + i).length) {};				
}catch(err){
  if ($("#btext" + i).length) {
     //working this code if the item, not NULL 
   }
}

Solution 12 - Javascript

if (typeof($("#btext" + i)) == 'object'){
    $("#btext" + i).text("Branch " + i);
}

Solution 13 - Javascript

Calling length property on undefined or a null object will cause IE and webkit browsers to fail!

Instead try this:

if($("#something") !== null){
  // do something
}

or

if($("#something") === null){
  // don't do something
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondjmzfKnmView Question on Stackoverflow
Solution 1 - JavascriptChristophView Answer on Stackoverflow
Solution 2 - JavascripteleotlecramView Answer on Stackoverflow
Solution 3 - JavascripttvanfossonView Answer on Stackoverflow
Solution 4 - JavascriptwaneyView Answer on Stackoverflow
Solution 5 - JavascriptburntblarkView Answer on Stackoverflow
Solution 6 - JavascripttheamoebaView Answer on Stackoverflow
Solution 7 - JavascriptHugh SeagravesView Answer on Stackoverflow
Solution 8 - JavascriptJamesView Answer on Stackoverflow
Solution 9 - JavascriptEmreView Answer on Stackoverflow
Solution 10 - JavascriptSuresh PattuView Answer on Stackoverflow
Solution 11 - JavascriptahmadjnView Answer on Stackoverflow
Solution 12 - Javascript한지만View Answer on Stackoverflow
Solution 13 - JavascriptWolfView Answer on Stackoverflow