Web Technologies
Introduction to Java Script
Smt M.Jeevana Sujitha
Assistant Professor
Department of Computer Science and Engineering
SRKR Engineering College, Bhimavaram, A.P. - 534204
OBJECTIVES
The Objectives of this lecture are
Need of Java Script
Introduction of Java Script
language that runs in the browser.
to boring static HTML web pages.
pages, validate forms, invoke actions based on user's
events etc.
works in all major browsers.
Introduction of Java Script
Features of Java Script
tags
Advantages of Java Script
Limitations of Java Script
Syntax of Java Script
</script> tags in a web page.
<script>
<script>
Java script code
</script>
Syntax of Java Script
Java Script placement in HTML file
<body>…..</body> section.
<html>
<body>
<script language="javascript" type="text/javascript">
document.write("welcome to JS world");
</script>
</body>
</html>
Example program
THANK YOU