Created
July 8, 2017 00:21
-
-
Save gabrielizalo/8799275bfc76cc6a7a76def7bb02a4d2 to your computer and use it in GitHub Desktop.
jQuery - Exists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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