I have a bookmarklet for resetting my router. I just need to visit and let the page finish loading, then my router starts resetting.
javascript:(function(){w=window.open("http://192.168.0.1/goform/formReboot","","width=1,height=1");self.focus();window.onload=w.close();})();
But it opens in a popup window.
My new idea is to dynamically append an hidden iframe to the page I'm on using a javascript bookmaklet, and then open the url in the hidden iframe. Is this even possible?
I'm open for better suggestion on how this can be done.