Skip to content

Instantly share code, notes, and snippets.

@assertchris
Created June 22, 2011 12:12
Show Gist options
  • Save assertchris/1039952 to your computer and use it in GitHub Desktop.
Save assertchris/1039952 to your computer and use it in GitHub Desktop.
Slick (MooTools) custom selector for case-insensitive content matching
Slick.definePseudo('contains-ci', function(text) {
return (this.innerText || this.textContent || '').match(new RegExp(text, 'ig'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment