Skip to content

Instantly share code, notes, and snippets.

@acodesmith
Created June 25, 2012 02:51
Show Gist options
  • Save acodesmith/2986149 to your computer and use it in GitHub Desktop.
Save acodesmith/2986149 to your computer and use it in GitHub Desktop.
jquery data attribute selector
//<span data-order="0"></span>
$("[data-order]");
//<span data-angle="45"></span>
$("[data-angle='45']");
//<span data-order="0" data-weight="5"></span>
$("[data-order][data-weight]");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment