Sha256: 0f76d92b9fd7364d7f8d271cf9f019e14b5518614a8bbacd048eda6b449aca6d
Contents?: true
Size: 639 Bytes
Versions: 16
Compression:
Stored size: 639 Bytes
Contents
<!doctype html> <head> <title>New Browser Launcher</title> <script language="JavaScript" type=""> function open_window_slowly(){ setTimeout("window.open('blankpage.html');", document.all.delay.value * 1000); } </script> </head> <body> <h1>New Browser Launcher</h1> <p>This link brings up a window marked "pass": <a href="pass.html" target="_blank">New Window</a></p> <p>This link brings up a window marked "blank for frames" after a delay: <span onclick="open_window_slowly();">New Window Slowly</span></p> <p> Number of seconds to wait: <input type="text" name="delay" value="0.5"></input></p> </body> </html>
Version data entries
16 entries across 16 versions & 2 rubygems