How to open links (in pdf document) in new tab or window by using javascript ?
This one is not working :
<a href=\"javascript: w=window.open('http://google.com') w.print(); w.close();\">Click</a>
This one is not working too :
$js = <<<EOD
function openw(url) {
app.window.open(url,"PDF");
}
EOD;
$pdf->IncludeJS($js);
The sample of above: <a href="javascript:openw(http://google.com)" target="_blank">Click</a>
Any advice or something ?