Skip to content

Instantly share code, notes, and snippets.

@tx2z
Created March 15, 2013 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tx2z/5168938 to your computer and use it in GitHub Desktop.
Save tx2z/5168938 to your computer and use it in GitHub Desktop.
Attributes(ids or names) with square brackets and jquery - http://jesus.perezpaz.es/2013/01/attributesids-or-classes-with-square-brackets-jquery/
function $$(selector, context){
return jQuery(selector.replace(/(\[|\])/g, '\\$1'),
context)
}
$$('#contact[email]') ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment