0% found this document useful (0 votes)
38 views1 page

Internet Technology and Web Design: Chapter: 10.2 Interactive Tools Topic: 10.2.5 Java Script

JavaScript is a scripting language used primarily for developing dynamic websites and programmatic access to objects in other applications. It is unrelated to Java programming language, despite similarities in names. The example shows a simple HTML page containing JavaScript code that writes "Hello World!!" to the document using <script> tags.

Uploaded by

ETL LABS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

Internet Technology and Web Design: Chapter: 10.2 Interactive Tools Topic: 10.2.5 Java Script

JavaScript is a scripting language used primarily for developing dynamic websites and programmatic access to objects in other applications. It is unrelated to Java programming language, despite similarities in names. The example shows a simple HTML page containing JavaScript code that writes "Hello World!!" to the document using <script> tags.

Uploaded by

ETL LABS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like