Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created June 2, 2014 20:47
Show Gist options
  • Save 0x4a/657a5796a5c3d0e245c5 to your computer and use it in GitHub Desktop.
Save 0x4a/657a5796a5c3d0e245c5 to your computer and use it in GitHub Desktop.
check if an element exists - #js
//http://appglobe.com/check-if-element-exists-with-jquery/
jQuery.fn.exists = function() {
return this.length > 0;
};
// usage:
/*
if ( $('#element').exists() ) {
// Do something
}
*/
//simpler:
/*
if( $('#elementID').length ) {
// Exists...do something
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment