VergeResources
Programmer
Is there a way to simulate the File:New:Window menu option using javascript? I want to duplicate my current window and then force it to submit.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--
function dupWindow() { var winHandle = window.open(top.location, '', ''); }
//-->
</SCRIPT>
</HEAD>
<BODY>
Click <A HREF="javascript:dupWindow();">here</A> to duplicate this window...
</BODY>
</HTML>