Created
June 19, 2013 17:33
-
-
Save advorak/5816191 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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