I want open new window (with jQuery) and show PDF from base64 content. When I make normal link:
<a href=\"data:application/pdf;base64,'.$answer->shipping_label_content.'\" target=\"blank\">Show PDF</a>
It's all good. But I want automatic open new window with this content and I don't know how :-/
var window = window.open();
var html = "data:application/pdf;base64,'.$answer->shipping_label_content.'";
$(window.document.body).html(html);