Skip to content

Instantly share code, notes, and snippets.

@simensen
Created March 23, 2011 20:22
Show Gist options
  • Select an option

  • Save simensen/883873 to your computer and use it in GitHub Desktop.

Select an option

Save simensen/883873 to your computer and use it in GitHub Desktop.
// What worked in jQuery 1.4
$form.find('input[name=subscribers[]]')
// What it needs to be for jQuery 1.5
$form.find('input[name="subscribers[]"]')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment