Wednesday, December 14, 2016

first JavaScript!

Your first JavaScript!



<html>
    <head>
        <title>Fisrt javascript example</title>
        <script type="text/javascript">
            function hello()
            {
               // document.write("welcome to javascript");
               alert('welcome to javascript');
            }
         
        </script>
    </head>
    <body>
        <div onclick="hello()">This is for testing purpose</div>
    </body>
</html>

No comments:

Post a Comment