I have tried target="_blank" but nothing happens. Is anybody help for this issue? I need to open links in new tab/window which is in PDF file.
target="_blank"
I'm using TCPDF 5.9.176
TCPDF 5.9.176
Try using javascript:
<script type="text/javascript">function abrirVentana(url) { window.open(url, "nuevo"); } </script>
and then the HTML:
<a href="#" onClick="abrirVentana('http://')"></a>
1.4m articles
1.4m replys
5 comments
57.0k users