Example:
var $doesNotYetExistInTheDOM = $('<span/>'); // create new jQuery element
                                             // outside of the DOM
var $doesExistInTheDOM = $('span');  // selected element from the DOM
Is there a way to check if a jQuery selected object exists in the DOM?
 
     
    