Created
April 9, 2014 14:37
-
-
Save ephbaum/10277870 to your computer and use it in GitHub Desktop.
jQuery.exists Extension
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
/* Extend jQuery slightly to determine existence of element */ | |
jQuery.fn.exists = function() { | |
return this.length > 0; | |
} | |
/* How to implement... */ | |
if ($(selector).exists()) { | |
// Do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment