Skip to content

Instantly share code, notes, and snippets.

@jamsesso
Created October 16, 2010 02:34
Show Gist options
  • Save jamsesso/629323 to your computer and use it in GitHub Desktop.
Save jamsesso/629323 to your computer and use it in GitHub Desktop.
/* Usage:
* Return element: elem("name-of-element");
* Value of element: elem("name-of-element").val();
* Any method in jQuery works here since it returns a jQuery object.
* */
var elem = function(selector)
{
return $("*[name="+ selector +"]");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment