Hello,
How would I go about creating a table of contents in which some elements I do not wish to visually be seen however I do want them to show up under PDF "table of contents" and link to specific pages. When I display: none the elements are removed from the accessibility tree.
Your help is very much appreciated, thank you!
How would I go about creating a table of contents in which some elements I do not wish to visually be seen however I do want them to show up under PDF "table of contents" and link to specific pages. When I display: none the elements are removed from the accessibility tree.
<h1>Parent Tree Item 1</h1>
<h2>Child Item 1</h2>
<h2>Child Item 2</h2> <!-- link target -->
<h1>Parent Tree Item 2</h1>
<h2>Child Item 1</h2>
<h2 style="display: none">Child Item 2</h2> <!-- lets say I want to link to above page -->
Your help is very much appreciated, thank you!
Edited by CrazyTux