WEEK 6 - Introduction to Java Script

Java script is a document help the web designer to build more functional and interactive website. For example, popup window, alert message, form validation, etc. are common use by the developer. In this week, our lecturer teach us on how to form a java script in html document. First, we use this code from lecturer slide. Exercise 1 INPUT: <html><head><title> JAVA SCRIPT</title></head> <body> <h1> Welcome to SMMTC </h1> This is HTML section.... </body> </html> <script type="text/javascript"> window.alert("welcome to JavaScript!"); </script> OUTPUT: Exercise 2 INPUT: <html><head><title> JAVA SCRIPT</title> <script type="text/javascript"> function showText() { window.alert("welcome to JavaScript!"); } </script></head> <body onload="showText();"> <h1> Welcome to SMMTC </h...