I\'m using jQuery\'s selectors, especially id selector:
$(\"#elementId\")...
How should I determine whether jQuery has found the element or
!$.isEmptyObject($.find('#id'))
This will return true if the element exists and false if it doesn't.