Skip to content

Instantly share code, notes, and snippets.

@cavis
Created November 12, 2012 22:48
Show Gist options
  • Save cavis/4062583 to your computer and use it in GitHub Desktop.
Save cavis/4062583 to your computer and use it in GitHub Desktop.
$(function() {
$('.signupform form').submit(function(e) {
e.preventDefault(); //don't submit
var teamName = $('.signupform form input[name="teamname"]').val();
var email = $('.signupform form input[name="email"]').val();
console.log("SUBMIT FORM", teamName, email);
// open modal here and $('selector').val(teamName) the form elements
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment