how to check if id exists in dom jquery code example
Example: jquery check if element exists
// Check if an element currently exists
if ($('#element').length) {
}
// Check if an element currently exists
if ($('#element').length) {
}