javascript - how to view pdf in new window? -


in crome works fine not in ie , safari.

newwin('data:application/pdf;base64,' + base64variable,600,600);  function newwin(url,w,h) {      var win = window.open("","temp","width="+w+",height="+h+",menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=auto,resizable=yes");      win.location.href = url;      win.focus(); } 

in both of browser windows open no content shown. in safari attempts download file. real ball buster , dont know do.

older versions of ie not support data: protocol - reference. more information ie can found here

not sure safari


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -