Skip to content

Commit 2096d07

Browse files
committed
Add JS alert test page
1 parent 1e7ab7f commit 2096d07

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

demo/jsalert.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<html>
2+
<head>
3+
<title>JavaScript Alert Test</title>
4+
<script type="text/javascript">
5+
function OpenAlert()
6+
{
7+
alert('This is an alert!');
8+
}
9+
</script>
10+
</head>
11+
<body>
12+
<div style="width:100%;height:100%;">
13+
<span>Javascript Alert Test</span>
14+
<br/>
15+
<button onclick="OpenAlert()">Open Alert</button>
16+
</div>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)