We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7ab7f commit 2096d07Copy full SHA for 2096d07
1 file changed
demo/jsalert.html
@@ -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