Skip to content

Instantly share code, notes, and snippets.

@jerodsanto
Created March 18, 2010 17:58
Show Gist options
  • Save jerodsanto/336645 to your computer and use it in GitHub Desktop.
Save jerodsanto/336645 to your computer and use it in GitHub Desktop.
do NOT do this
// before
window.location.href = '/customers/' + customer + '/contracts/' + contract + '/' + type + '.pdf';
// after
window.open = '/customers/' + customer + '/contracts/' + contract + '/' + type + '.pdf';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment