Answers for "jquery check id exists"

22

jquery check if element exists

// Check if an element currently exists
if ($('#element').length) {

}
Posted by: Guest on June-05-2020
-2

jquery check if element still exists

$(function() {
    var $button = $(".the_button");
    alert (isStale($button));
    $button.remove();
    alert (isStale($button));
});
    
function isStale($elem)
{
    return $elem.closest("body").length > 0;
};
Posted by: Guest on April-17-2020

Code answers related to "jquery check id exists"

Code answers related to "Javascript"

Browse Popular Code Answers by Language