Possible Duplicate:
Is there an “exists” function for jQuery
yes, i know this has been asked a lot. but, it confuses me, since the results on google for this search, shows diffrent methods ( listed below )
$(document).ready(function() {
if ($('#DivID').length){
alert('Found with Length');
}
if ($('#DivID').length > 0 ) {
alert('Found with Length bigger then Zero');
}
if ($('#DivID') != null ) {
alert('Found with Not Null');
}
});
which one of the 3 is the Correct way to check if the div exists?
EDIT: Its a pitty to see that people do not want to learn what is the better approach from the three diffrent methods, this question is not actually on "How to check if a div exists", But, its about which method is better, and if someone could explain, then also why.
