1. The <script> Tag <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <h3>javascript in body</h3> <p id="demo"> </p> </body> <script> document.getElementById("demo").innerHTML="my first JavaScript"; </script> </html> 2. Window alert() Method <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <p>Click the button to display an alery box.</p> <button onClick="myFunction()">Try it</button> <script> function myFunction() { alert("hello i am an alert box"); } </script> </body> </html 3. Javascript - alert <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> ...
Penerapan Teknologi Informasi dalam berbagai bidang