slimerjs-firefox
Version:
This repo includes slimerjs as well as downloads a local copy of Firefox.
17 lines (16 loc) • 459 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>window open</title>
</head>
<body>this page tries to open a window
<script type="text/javascript">
function launchWindow() {
window.open("helloframe.html", "plop", "resizable,scrollbars,status");
return "OK";
}
</script>
<input type="button" onclick="launchWindow()" value="click" id="btn">
</body>
</html>