JavaScript Events – onclick




Check out my new site at http://www.youtubemuse.com/

This screencast is going to look at the onclick event handler. This event handler executes JavaScript code when the user clicks on the HTML element that is setup with this event handler.

Original source


12 responses to “JavaScript Events – onclick”

  1. Try This 😀

    <DOCTYPE html>
    <html>
    <head>
    <style>

    </style>

    <script type="text/javascript">

    </script>

    </head>

    <body>

    <a href="#" onmouseover="alert('I will Not Let You Click HAHAHHAHA')";>Please Click </a>

    </body>

    </html>

Leave a Reply