JavaScript – Introduction
JavaScript Introduction: We can Write JavaScript code in places of HTML document We can Write JavaScript code in places of HTML document Body Location: Execute Script when web page is loading. <html> <body> <script> alert(“Alert box while loading page”); </script> </body></html> Head Location: Execute Script on action (for example click on button). <html> <head> <script> …