Skip to content

Instantly share code, notes, and snippets.

@nickwhitt
Created June 6, 2012 22:29
Show Gist options
  • Save nickwhitt/2885225 to your computer and use it in GitHub Desktop.
Save nickwhitt/2885225 to your computer and use it in GitHub Desktop.
Export form results by overriding default action
$('.export').click(function() {
var action = $('form').attr('action');
$('form').attr('action', '/path/to/export').submit().attr('action', action);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment