|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Window Open Blank Test App</title>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
function onLoad() {
|
|
window.open("sample.html", "_blank");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="onLoad()">
|
|
<h1>Window Open Blank Test App</h1>
|
|
</body>
|
|
</html>
|