I am using HTML files stored in database to show content in browser component. The files have hyperlinks between each other. Is there a way i can capture the hyperlink clicked by user and then show the linked HTML file.
If the hyperlink clicked can be captured then i can write a rule to extract and show the linked file.
Unfortunately there is no straightforward soultion, because you should iterate over all links in document with JS and add custom click handlers that will prevent default behavior.
It’s possible to implement a component that can help, but it’ll take a lot of time