Skip to content

Instantly share code, notes, and snippets.

@kadavre
Created June 18, 2017 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadavre/8f9c70a039678da3508c54c4fb50d294 to your computer and use it in GitHub Desktop.
Save kadavre/8f9c70a039678da3508c54c4fb50d294 to your computer and use it in GitHub Desktop.
// Old way
console.log($('#elem').length == 1 ? "exists!" : "doesn't exist!");
// The trick:
jQuery.fn.exists = function(){ return this.length > 0; }
console.log($('#elem').exists() ? "exists!" : "doesn't exist!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment