Skip to content

Instantly share code, notes, and snippets.

@all4miller
Created September 11, 2012 11:07
Show Gist options
  • Save all4miller/3697625 to your computer and use it in GitHub Desktop.
Save all4miller/3697625 to your computer and use it in GitHub Desktop.
Intercept link and change url
$('a.mapping-link').click(function() {
var href = $(this).attr('href');
href += '?report_month=' + $('#report_month').val();
href += '&dealer_code=' + $('#dealer_dealerCode').val();
$(this).attr('href', href);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment