vote up 3 vote down star
2

Hi,

I am using jQuery, I want to check existence of an element in my page. I have done following code, but its not working?

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

Please tell me what will be the right code?

flag

77% accept rate

4 Answers

vote up 2 vote down check

Check the jQuery FAQ...

link|flag
Thanks, its really very good. – Prashant Jan 25 at 13:39
vote up 4 vote down

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 may just do nothing.

$("#btext" + i).text("Branch " + i);
link|flag
0 is a false value, so the elem.length expression evaluates to false - in other words, there is no need for the '!= 0' part – J-P Jan 25 at 15:06
vote up 3 vote down

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

if ($("#btext" + i).length){
        //alert($("#btext" + i).text());
    $("#btext" + i).text("Branch " + i);
}
link|flag
vote up 0 vote down
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]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.