I use KLWP to open a link to an IOT device’s page which has several “tabs” of information. When I open it, I want to always go to the first tab. But the IOT device’s web server always “remembers” which tab was last opened/used and returns to it the new time I open the page.
I have determined that this is done because the web server drops a cookie with the page that contains the last page used information. If I clear that cookie and re-open, I always get sent to the first tab.
So my question is: how can I get rid of this cookie when using the Open Link on a touch event? Or is there a way to otherwise clear this cookie before I open the link?
Perhaps if I could open in private/incognito mode?
BTW - I finally realized that the IOT device in question is open source. I was able to find the cookie’s use in the HTML and removed it. That solved the problem. Best