Skip to content

Instantly share code, notes, and snippets.

@foleyatwork
Created September 8, 2015 16:52
Show Gist options
  • Save foleyatwork/1ce6470d84b0092c067f to your computer and use it in GitHub Desktop.
Save foleyatwork/1ce6470d84b0092c067f to your computer and use it in GitHub Desktop.
// YUI
if (Y.one('.some-el')) {
// returns undefined if .some-el is not on the page.
}
// jQuery (incorrect)
if ($('.some-el')) {
// returns an array if .some-el is not on the page.
}
// jQuery (correct)
if ($('.some-el').length > 0) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment