Skip to content

Instantly share code, notes, and snippets.

@sarfraznawaz2005
Last active October 12, 2015 18:30
Show Gist options
  • Save sarfraznawaz2005/5a48cc6b181b09f28d94 to your computer and use it in GitHub Desktop.
Save sarfraznawaz2005/5a48cc6b181b09f28d94 to your computer and use it in GitHub Desktop.
Extending jQuery selector engine
$.extend($.expr[':'],{
inline: function(a) {
return $(a).css('display') === 'inline';
}
});
// $(':inline'); // Selects ALL inline elements
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment