E-Content of
INTERNET TECHNOLOGY AND WEB DESIGN
Chapter : 10.2 Interactive Tools
Topic : 10.2.5 Java Script
Java Script
• JavaScript is a scripting language used to enable programmatic access
to objects within other applications.
• It is primarily used in the form of client-side JavaScript for the
development of dynamic websites.
• JavaScript, despite the name is essentially unrelated to the Java
Programming language even though the two do have superficial
similarities.
• JavaScript copies many Java names and naming connections.
• The following example shows the standards-confirming web page
containing JavaScript (using HTML syntax).
<html>
<head>
<title> Simple page </title>
</head>
<body>
<Script type = “text/JavaScript”>
document.write (“Hello World!!”);
</Script>
<noscript>
<P>Your browser either doesnot support
JavaScript,
or user have JavaScript turned off. </P>
</noscript>
</body>
</html>
Page | 22