wkhtmltopdf : internal link not working as expected
-
Doing some tests with wkhtmltopdf using https://playground.jsreport.net I couldn't create anchors to a certain part of the page( like an index link), even though when I set href to a url it works as expected. Please take a look at the code I'm using:
Index page:
<a href="#linkToPageTwo">Page 2 </a>Target page:
<a name="linkToPageTwo"></a>Is there a better way to do this using jsreports?
-
hi! maybe this issue can help. seems like you need to put something in
<a name="linkToPageTwo"></a>
like -><a name="linkToPageTwo"> </a>
-
thank you. it's working!