Typically in JavaScript I do something like the below to verify an element does exist:
if (document.getElementById('lblUpdateStatus')) {
$("#lblUpdateStatus").text("");
}
But, using jQuery - how can I do the same type of thing?
|
|
Typically in JavaScript I do something like the below to verify an element does exist:
But, using jQuery - how can I do the same type of thing?
|
||
|
|
|
The get method returns the matched DOM elements:
but I am not sure if it is a fast method. |
||
|
|
|
|
I wrote a post about that on my blog
|
|||
|
|
|
I see no reason to use jQuery just for the sake of it. the On the other hand, if just changing the text property of the object is what you want to do, you don't need to check for its existence if you use jQuery.
will do the exact same thing as having just
|
||
|
|
|
|
|
||
|
|
|
|
The thing is that the jQuery will only do the requested action if the element exists :-), so you only need:
|
||
|
|