Skip to content

Instantly share code, notes, and snippets.

@andyf-7
Created May 3, 2015 11:02
Show Gist options
  • Save andyf-7/197100620407d7528ba1 to your computer and use it in GitHub Desktop.
Save andyf-7/197100620407d7528ba1 to your computer and use it in GitHub Desktop.
Jquery array push
var GradeName=[];
$('input[name="GradeName[]"]').each(function(){
GradeName.push(this.value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment