I use a webviewer to reproduce a FAQ which is already on a website.
HOWEVER I do not want people to navigate away from that page.
Therefore I wish to ignore clicks on the menu
I tried a button or a Label over the hamburger menu but it is still clickable even when the button/label is on top? (In the example I moved the button away from the menu for clarity).
How can I prevent clicks on a particular area of the webviewer?
Fixing the scroll position to start at a certain position would also be an option but that is not possible either.
When I could run java script I would just run:
document.getElementsByClassName(‘mobile-menu-toggle’)[0].style.display=‘none’;
Thanks for the suggestion. i managed to extract the faq via web api. But that route is a lot of work.
I saw this example thunkable example to include javascript
Can I not do something like this to run javascript?