Hi,
I'm using jQuery's selectors, especially id selector:
$("#elementId")...
How should I determine whether jQuery has found the element or not?
Even If the element with the specified id doesn't exist the next statement give me: [object Object]
alert($("#idThatDoesnotexist"));