Skip to content

Instantly share code, notes, and snippets.

@advorak
Created June 19, 2013 17:33
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 advorak/5816191 to your computer and use it in GitHub Desktop.
Save advorak/5816191 to your computer and use it in GitHub Desktop.
// I have a bunch of inputs[type=text] that contains the following ids: #name, #address, #city, #state, #zipcode
// $current will be set to the input#name field.
$current = $('input#name')
// I want to select all $('input') but omit the $current .. how can I do this?
$('input')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment