Skip to content

Instantly share code, notes, and snippets.

@gabrielizalo
Created July 8, 2017 00:21
Show Gist options
  • Save gabrielizalo/8799275bfc76cc6a7a76def7bb02a4d2 to your computer and use it in GitHub Desktop.
Save gabrielizalo/8799275bfc76cc6a7a76def7bb02a4d2 to your computer and use it in GitHub Desktop.
jQuery - Exists
// if element exists
if($('selector').length){ //do something }
// if element does not exist
if(!$('selector').length){ //do something }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment