alerts.html 398 B

1234567891011121314151617
  1. <html>
  2. <head>
  3. <title>Testing Alerts</title>
  4. </head>
  5. <body>
  6. <h1>Testing Alerts and Stuff</h1>
  7. <div id="text"></div>
  8. <p>This tests alerts: <a href="#" id="alert" onclick="alert('cheese');">click me</a></p>
  9. <p>This is a test of a confirm: <a href="simpleTest.html" id="confirm"
  10. onclick="return confirm('Are you sure?');">test confirm</a></p>
  11. </body>
  12. </html>