Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created December 4, 2014 15:54
Show Gist options
  • Save DWboutin/b5cefed160144535e55f to your computer and use it in GitHub Desktop.
Save DWboutin/b5cefed160144535e55f to your computer and use it in GitHub Desktop.
Javascript Print Cross-browser
if(navigator.userAgent.indexOf('MSIE')){
window.document.execCommand('print', false, null);
}else{
window.print();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment