SlideShare a Scribd company logo
1 of 14
Javascript Tutorial
What is JavaScript ?
JavaScript started life as LiveScript, but Netscape changed the name, possibly because of the excitement being
generated by Java.to JavaScript. JavaScript made its first appearance in Netscape 2.0 in 1995 with a name
LiveScript.
JavaScript is a lightweight, interpreted programming language with object-oriented capabilities that allows you
to build interactivity into otherwise static HTML pages.
The general-purpose core of the language has been embedded in Netscape, Internet Explorer, and other web
browsers
The ECMA-262 Specification defined a standard version of the core JavaScript language.
JavaScript is:
 JavaScript is a lightweight, interpreted programming language
 Designed for creating network-centric applications
 Complementary to and integrated with Java
 Complementary to and integrated with HTML
 Open and cross-platform
Client-side JavaScript:
Client-side JavaScript is the most common form of the language. The script should be included in or referenced
by an HTML document for the code to be interpreted by the browser.
It means that a web page need no longer be static HTML, but can include programs that interact with the user,
control the browser, and dynamically create HTML content.
The JavaScript client-side mechanism features many advantages over traditional CGI server-side scripts. For
example, you might use JavaScript to check if the user has entered a valid e-mail address in a form field.
The JavaScript code is executed when the user submits the form, and only if all the entries are valid they would
be submitted to the Web Server.
JavaScript can be used to trap user-initiated events such as button clicks, link navigation, and other actions that
the user explicitly or implicitly initiates.
Advantages of JavaScript:
The merits of using JavaScript are:
 Less serverinteraction: You can validate user input before sending the page off to the server. This
saves server traffic, which means less load on your server.
 Immediate feedback to the visitors: They don't have to wait for a page reload to see if they have
forgotten to enter something.
 Increased interactivity: You can create interfaces that react when the user hovers over them with a
mouse or activates them via the keyboard.
 Richer interfaces: You can use JavaScript to include such items as drag-and-drop components and
sliders to give a Rich Interface to your site visitors.
Limitations with JavaScript:
We can not treat JavaScript as a full fledged programming language. It lacks the following important features:
 Client-side JavaScript does not allow the reading or writing of files. This has been kept for security
reason.
 JavaScript can not be used for Networking applications because there is no such support available.
 JavaScript doesn't have any multithreading or multiprocess capabilities.
Once again, JavaScript is a lightweight, interpreted programming language that allows you to build interactivity
into otherwise static HTML pages.
JavaScript Development Tools:
One of JavaScript's strengths is that expensive development tools are not usually required. You can start with a
simple text editor such as Notepad.
Since it is an interpreted language inside the context of a web browser, you don't even need to buy a compiler.
To make our life simpler, various vendors have come up with very nice JavaScript editing tools. Few of them
are listed here:
 Microsoft FrontPage: Microsoft has developed a popular HTML editor called FrontPage. FrontPage
also provides web developers with a number of JavaScript tools to assist in the creation of an interactive
web site.
 Macromedia Dreamweaver MX: Macromedia Dreamweaver MX is a very popular HTML and
JavaScript editor in the professional web development crowd. It provides several handy prebuilt
JavaScript components, integrates well with databases, and conforms to new standards such as XHTML
and XML.
 Macromedia HomeSite 5: This provided a well-liked HTML and JavaScript editor, which will manage
their personal web site just fine.
Where JavaScript is Today ?
The ECMAScript Edition 4 standard will be the first update to be released in over four years. JavaScript 2.0
conforms to Edition 4 of the ECMAScript standard, and the difference between the two is extremely minor.
The specification for JavaScript 2.0 can be found on the following site: http://www.ecmascript.org/
Today, Netscape's JavaScript and Microsoft's JScript conform to the ECMAScript standard, although each
language still supports features that are not part of the standard.
JavaScript Syntax
A JavaScript consists of JavaScript statements that are placed within the <script>... </script> HTML tags in a
web page.
You can place the <script> tag containing your JavaScript anywhere within you web page but it is preferred
way to keep it within the <head> tags.
The <script> tag alert the browser program to begin interpreting all the text between these tags as a script. So
simple syntax of your JavaScript will be as follows
<script ...>
JavaScript code
</script>
The script tag takes two important attributes:
 language: This attribute specifies what scripting language you are using. Typically, its value will be
javascript. Although recent versions of HTML (and XHTML, its successor) have phased out the use of
this attribute.
 type: This attribute is what is now recommended to indicate the scripting language in use and its value
should be set to "text/javascript".
So your JavaScript segment will look like:
<script language="javascript" type="text/javascript">
JavaScript code
</script>
Your First JavaScript Script:
Let us write our class example to print out "Hello World".
<html>
<body>
<script language="javascript" type="text/javascript">
<!--
document.write("Hello World!")
//-->
</script>
</body>
</html>
We added an optional HTML comment that surrounds our Javascript code. This is to save our code from a
browser that does not support Javascript. The comment ends with a "//-->". Here "//" signifies a comment in
Javascript, so we add that to prevent a browser from reading the end of the HTML comment in as a piece of
Javascript code.
Next, we call a function document.write which writes a string into our HTML document. This function can be
used to write text, HTML, or both. So above code will display following result:
Hello World!
To understand it in better way you can Try it yourself.
Whitespace and Line Breaks:
JavaScript ignores spaces, tabs, and newlines that appear in JavaScript programs.
Because you can use spaces, tabs, and newlines freely in your program so you are free to format and indent your
programs in a neat and consistent way that makes the code easy to read and understand.
Semicolons are Optional:
Simple statements in JavaScript are generally followed by a semicolon character, just as they are in C, C++, and
Java. JavaScript, however, allows you to omit this semicolon if your statements are each placed on a separate
line. For example, the following code could be written without semicolons
<script language="javascript" type="text/javascript">
<!--
var1 = 10
var2 = 20
//-->
</script>
But when formatted in a single line as follows, the semicolons are required:
<script language="javascript" type="text/javascript">
<!--
var1 = 10; var2 = 20;
//-->
</script>
Note: It is a good programming practice to use semicolons.
Case Sensitivity:
JavaScript is a case-sensitive language. This means that language keywords, variables, function names, and any
other identifiers must always be typed with a consistent capitalization of letters.
So identifiers Time, TIme and TIME will have different meanings in JavaScript.
NOTE: Care should be taken while writing your variable and function names in JavaScript.
Comments in JavaScript:
JavaScript supports both C-style and C++-style comments, Thus:
 Any text between a // and the end of a line is treated as a comment and is ignored by JavaScript.
 Any text between the characters /* and */ is treated as a comment. This may span multiple lines.
 JavaScript also recognizes the HTML comment opening sequence <!--. JavaScript treats this as a single-
line comment, just as it does the // comment.
 The HTML comment closing sequence --> is not recognized by JavaScript so it should be written as //--
>.
Example:
<script language="javascript" type="text/javascript">
<!--
// This is a comment. It is similar to comments in C++
/*
* This is a multiline comment in JavaScript
* It is very similar to comments in C Programming
*/
//-->
</script>
All the modern browsers come with built-in support for JavaScript. Many times you may need to enable or
disable this support manually.
This tutorial will make you aware the procedure of enabling and disabling JavaScript support in your browsers :
Internet Explorer, Firefox and Opera.
JavaScript in Internet Explorer:
Here are simple steps to turn on or turn off JavaScript in your Internet Explorer:
1. Follow Tools-> Internet Options from the menu
2. Select Security tab from the dialog box
3. Click the Custom Level button
4. Scroll down till you find Scripting option
5. Select Enable radio button under Active scripting
6. Finally click OK and come out
To disable JavaScript support in your Internet Explorer, you need to select Disable radio button under Active
scripting.
JavaScript in Firefox:
Here are simple steps to turn on or turn off JavaScript in your Firefox:
1. Follow Tools-> Options
from the menu
2. Select Content option from the dialog box
3. Select Enable JavaScript checkbox
4. Finally click OK and come out
To disable JavaScript support in your Firefox, you should not select Enable JavaScript checkbox.
JavaScript in Opera:
Here are simple steps to turn on or turn off JavaScript in your Opera:
1. Follow Tools-> Preferences
from the menu
2. Select Advanced option from the dialog box
3. Select Content from the listed items
4. Select Enable JavaScript checkbox
5. Finally click OK and come out
To disable JavaScript support in your Opera, you should not select Enable JavaScript checkbox.
Warning for Non-JavaScript Browsers:
If you have to do something important using JavaScript then you can display a warning message to the user
using <noscript> tags.
You can add a noscript block immediately after the script block as follows:
<html>
<body>
<script language="javascript" type="text/javascript">
<!--
document.write("Hello World!")
//-->
</script>
<noscript>
Sorry...JavaScript is needed to go ahead.
</noscript>
</body>
</html>
Now, if user's browser does not support JavaScript or JavaScript is not enabled then message from </noscript>
will be displayed on the screen.
JavaScript Placement in HTML File
There is a flexibility given to include JavaScript code anywhere in an HTML document. But there are following
most preferred ways to include JavaScript in your HTML file.
 Script in <head>...</head> section.
 Script in <body>...</body> section.
 Script in <body>...</body> and <head>...</head> sections.
 Script in and external file and then include in <head>...</head> section.
In the following section we will see how we can put JavaScript in different ways:
JavaScript in <head>...</head> section:
If you want to have a script run on some event, such as when a user clicks somewhere, then you will place that
script in the head as follows:
<html>
<head>
<script type="text/javascript">
<!--
function sayHello() {
alert("Hello World")
}
//-->
</script>
</head>
<body>
<input type="button" onclick="sayHello()" value="Say Hello" />
</body>
</html>
This will produce following result:
To understand it in better way you can Try it yourself.
JavaScript in <body>...</body> section:
If you need a script to run as the page loads so that the script generates content in the page, the script goes in the
<body> portion of the document. In this case you would not have any function defined using JavaScript:
<html>
<head>
</head>
<body>
<script type="text/javascript">
<!--
document.write("Hello World")
//-->
</script>
<p>This is web page body </p>
</body>
</html>
This will produce following result:
Advertisements
Hello World
This is web page body
To understand it in better way you can Try it yourself.
JavaScript in <body> and <head> sections:
You can put your JavaScript code in <head> and <body> section altogether as follows:
<html>
<head>
<script type="text/javascript">
<!--
function sayHello() {
alert("Hello World")
}
//-->
</script>
</head>
<body>
<script type="text/javascript">
<!--
document.write("Hello World")
//-->
</script>
<input type="button" onclick="sayHello()" value="Say Hello" />
</body>
</html>
This will produce following result:
Advertisements
Hello World
To understand it in better way you can Try it yourself.
JavaScript in External File :
As you begin to work more extensively with JavaScript, you will likely find that there are cases where you are
reusing identical JavaScript code on multiple pages of a site.
You are not restricted to be maintaining identical code in multiple HTML files. The script tag provides a
mechanism to allow you to store JavaScript in an external file and then include it into your HTML files.
Here is an example to show how you can include an external JavaScript file in your HTML code using script
tag and its src attribute:
<html>
<head>
<script type="text/javascript" src="filename.js" ></script>
</head>
<body>
.......
</body>
</html>
To use JavaScript from an external file source, you need to write your all JavaScript source code in a simple
text file with extension ".js" and then include that file as shown above.
For example, you can keep following content in filename.js file and then you can use sayHello function in your
HTML file after including filename.js file:
function sayHello() {
alert("Hello World")
}
JavaScript For Loop
« Previous
NextChapter»
Loops can execute a block of code a number of times.
JavaScript Loops
Loops are handy, if you want to run the same code over and over again, each time with a different value.
Often this is the case when working with arrays:
Instead of writing:
document.write(cars[0] +"<br>");
document.write(cars[1] +"<br>");
document.write(cars[2] +"<br>");
document.write(cars[3] +"<br>");
document.write(cars[4] +"<br>");
document.write(cars[5] +"<br>");
You can write:
for (vari=0;i<cars.length;i++)
{
document.write(cars[i] +"<br>");
}
Try it yourself »
Different Kinds of Loops
JavaScript supports different kinds of loops:
 for - loopsthrougha blockof code a numberof times
 for/in - loopsthroughthe propertiesof anobject
 while - loopsthrougha blockof code while aspecifiedconditionistrue
 do/while - alsoloopsthrougha blockof code while aspecifiedconditionistrue
The For Loop
The for loop is often the tool you will use when you want to create a loop.
The for loop has the following syntax:
for (statement1;statement2; statement3)
{
thecode blockto be executed
}
Statement 1 is executed before the loop (the code block) starts.
Statement 2 defines the condition for running the loop (the code block).
Statement 3 is executed each time after the loop (the code block) has been executed.
Example
for (vari=0; i<5; i++)
{
x=x + "The numberis" + i + "<br>";
}
Try it yourself »
From the example above, you can read:
Statement 1 sets a variable before the loop starts (var i=0).
Statement 2 defines the condition for the loop to run (i must be less than 5).
Statement 3 increases a value (i++) each time the code block in the loop has been executed.
Statement 1
Normally you will use statement 1 to initiate the variable used in the loop (var i=0).
This is not always the case, JavaScript doesn't care, and statement 1 is optional.
You can initiate any (or many) values in statement 1:
Example:
for (vari=0,len=cars.length;i<len;i++)
{
document.write(cars[i] +"<br>");
}
Try it yourself »
And you can omit statement 1 (like when your values are set before the loop starts):
Example:
var i=2,len=cars.length;
for (;i<len;i++)
{
document.write(cars[i] +"<br>");
}
Try it yourself »
Statement 2
Often statement 2 is used to evaluate the condition of the initial variable.
This is not always the case, JavaScript doesn't care, and statement 2 is optional.
If statement 2 returns true, the loop will start over again, if it returns false, the loop will end.
If you omitstatement2,you mustprovide a break inside the loop.Otherwise the loopwill neverend.Thiswill
crash your browser.Readaboutbreaksina laterchapter of thistutorial.
Statement 3
Often statement 3 increases the initial variable.
This is not always the case, JavaScript doesn't care, and statement 3 is optional.
Statement 3 could do anything. The increment could be negative (i--), or larger (i=i+15).
Statement 3 can also be omitted (like when you have corresponding code inside the loop):
Example:
var i=0,len=cars.length;
for (;i<len;)
{
document.write(cars[i] +"<br>");
i++;
}
Try it yourself »
The For/In Loop
The JavaScript for/in statement loops through the properties of an object:
Example
var person={fname:"John",lname:"Doe",age:25};
for (x inperson)
{
txt=txt+ person[x];
}
You will learn more about the for / in loop in the chapter about JavaScript objects.
The While Loop
The while loop and the do/while loop will be explained in the next chapter.

More Related Content

What's hot

JavaScript & Dom Manipulation
JavaScript & Dom ManipulationJavaScript & Dom Manipulation
JavaScript & Dom ManipulationMohammed Arif
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptLaurence Svekis ✔
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep DiveGabriel Walt
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Edureka!
 
Introduction to Java 8
Introduction to Java 8Introduction to Java 8
Introduction to Java 8Knoldus Inc.
 
Java 8 presentation
Java 8 presentationJava 8 presentation
Java 8 presentationVan Huong
 
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...Edureka!
 
JavaScript - Chapter 4 - Types and Statements
 JavaScript - Chapter 4 - Types and Statements JavaScript - Chapter 4 - Types and Statements
JavaScript - Chapter 4 - Types and StatementsWebStackAcademy
 
REST APIs with Spring
REST APIs with SpringREST APIs with Spring
REST APIs with SpringJoshua Long
 
JavaScript - Chapter 10 - Strings and Arrays
 JavaScript - Chapter 10 - Strings and Arrays JavaScript - Chapter 10 - Strings and Arrays
JavaScript - Chapter 10 - Strings and ArraysWebStackAcademy
 
Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Hitesh-Java
 

What's hot (20)

JavaScript & Dom Manipulation
JavaScript & Dom ManipulationJavaScript & Dom Manipulation
JavaScript & Dom Manipulation
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
 
jQuery PPT
jQuery PPTjQuery PPT
jQuery PPT
 
Java script ppt
Java script pptJava script ppt
Java script ppt
 
Javascript by geetanjali
Javascript by geetanjaliJavascript by geetanjali
Javascript by geetanjali
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep Dive
 
Javascript 101
Javascript 101Javascript 101
Javascript 101
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Basics of JavaScript
Basics of JavaScriptBasics of JavaScript
Basics of JavaScript
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
 
Introduction to Java 8
Introduction to Java 8Introduction to Java 8
Introduction to Java 8
 
Java 8 presentation
Java 8 presentationJava 8 presentation
Java 8 presentation
 
Javascript
JavascriptJavascript
Javascript
 
Java
JavaJava
Java
 
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
 
JavaScript - Chapter 4 - Types and Statements
 JavaScript - Chapter 4 - Types and Statements JavaScript - Chapter 4 - Types and Statements
JavaScript - Chapter 4 - Types and Statements
 
REST APIs with Spring
REST APIs with SpringREST APIs with Spring
REST APIs with Spring
 
JavaScript - Chapter 10 - Strings and Arrays
 JavaScript - Chapter 10 - Strings and Arrays JavaScript - Chapter 10 - Strings and Arrays
JavaScript - Chapter 10 - Strings and Arrays
 
Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans
 
Introduction to Spring Boot
Introduction to Spring BootIntroduction to Spring Boot
Introduction to Spring Boot
 

Viewers also liked

Management information system ( MIS )
Management information system ( MIS )Management information system ( MIS )
Management information system ( MIS )QualitativeIn
 
MIS Structure
MIS StructureMIS Structure
MIS StructureArun Deva
 
Basics of Organizational Plans
Basics of Organizational PlansBasics of Organizational Plans
Basics of Organizational PlansAbdol Rauf
 
Multiple approaches to structure of mis
Multiple approaches to structure of misMultiple approaches to structure of mis
Multiple approaches to structure of misMohammed Irshad P
 
The Organizational Plan
The Organizational PlanThe Organizational Plan
The Organizational Plangohar321
 
Alternative Methodologies for Systems Development
Alternative Methodologies for Systems Development Alternative Methodologies for Systems Development
Alternative Methodologies for Systems Development Sunderland City Council
 
Information Systems Evolution (IS)
Information Systems Evolution (IS)Information Systems Evolution (IS)
Information Systems Evolution (IS)Helmee Halim
 
management information system MIS MBA PPT
management information system  MIS MBA PPT management information system  MIS MBA PPT
management information system MIS MBA PPT Babasab Patil
 
End User Computing
End User ComputingEnd User Computing
End User ComputingMudit Dhebar
 
Management Information System
Management Information SystemManagement Information System
Management Information SystemZeinul Haleem
 
Definition of Information System
Definition of Information SystemDefinition of Information System
Definition of Information SystemLansey Wegner
 
Management information system (MIS)
Management information system (MIS)Management information system (MIS)
Management information system (MIS)Pawel Gautam
 
2 approaches to system development
2 approaches to system development2 approaches to system development
2 approaches to system developmentcymark09
 
Process Planning
Process PlanningProcess Planning
Process PlanningGuhan M
 

Viewers also liked (20)

Management information system ( MIS )
Management information system ( MIS )Management information system ( MIS )
Management information system ( MIS )
 
management information system
management information systemmanagement information system
management information system
 
MIS Structure
MIS StructureMIS Structure
MIS Structure
 
Evolution of mis
Evolution of misEvolution of mis
Evolution of mis
 
Basics of Organizational Plans
Basics of Organizational PlansBasics of Organizational Plans
Basics of Organizational Plans
 
Multiple approaches to structure of mis
Multiple approaches to structure of misMultiple approaches to structure of mis
Multiple approaches to structure of mis
 
The Organizational Plan
The Organizational PlanThe Organizational Plan
The Organizational Plan
 
End User Computing
End User ComputingEnd User Computing
End User Computing
 
Alternative Methodologies for Systems Development
Alternative Methodologies for Systems Development Alternative Methodologies for Systems Development
Alternative Methodologies for Systems Development
 
Information Systems Evolution (IS)
Information Systems Evolution (IS)Information Systems Evolution (IS)
Information Systems Evolution (IS)
 
management information system MIS MBA PPT
management information system  MIS MBA PPT management information system  MIS MBA PPT
management information system MIS MBA PPT
 
End User Computing
End User ComputingEnd User Computing
End User Computing
 
Management Information System
Management Information SystemManagement Information System
Management Information System
 
Definition of Information System
Definition of Information SystemDefinition of Information System
Definition of Information System
 
Chapter 1 MIS
Chapter 1 MISChapter 1 MIS
Chapter 1 MIS
 
Management information system (MIS)
Management information system (MIS)Management information system (MIS)
Management information system (MIS)
 
2 approaches to system development
2 approaches to system development2 approaches to system development
2 approaches to system development
 
The Planning Process
The Planning ProcessThe Planning Process
The Planning Process
 
Process Planning
Process PlanningProcess Planning
Process Planning
 
Javascript
JavascriptJavascript
Javascript
 

Similar to Javascript tutorial

Unit 4 Java script.pptx
Unit 4 Java script.pptxUnit 4 Java script.pptx
Unit 4 Java script.pptxGangesh8
 
Java script Basic
Java script BasicJava script Basic
Java script BasicJaya Kumari
 
Web programming UNIT II by Bhavsingh Maloth
Web programming UNIT II by Bhavsingh MalothWeb programming UNIT II by Bhavsingh Maloth
Web programming UNIT II by Bhavsingh MalothBhavsingh Maloth
 
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTHWEB PROGRAMMING UNIT II BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTHBhavsingh Maloth
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxJavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxrish15r890
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPTGo4Guru
 
Java script by Act Academy
Java script by Act AcademyJava script by Act Academy
Java script by Act Academyactanimation
 
Javascript - Ebook (A Quick Guide)
Javascript - Ebook (A Quick Guide)Javascript - Ebook (A Quick Guide)
Javascript - Ebook (A Quick Guide)sourav newatia
 
Basic JavaScript Tutorial
Basic JavaScript TutorialBasic JavaScript Tutorial
Basic JavaScript TutorialDHTMLExtreme
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)Shrijan Tiwari
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scriptsch samaram
 
8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentationJohnLagman3
 
introduction to js
introduction to jsintroduction to js
introduction to jsSireesh K
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascriptambuj pathak
 

Similar to Javascript tutorial (20)

Unit 4 Java script.pptx
Unit 4 Java script.pptxUnit 4 Java script.pptx
Unit 4 Java script.pptx
 
Java script Basic
Java script BasicJava script Basic
Java script Basic
 
Web programming UNIT II by Bhavsingh Maloth
Web programming UNIT II by Bhavsingh MalothWeb programming UNIT II by Bhavsingh Maloth
Web programming UNIT II by Bhavsingh Maloth
 
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTHWEB PROGRAMMING UNIT II BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT II BY BHAVSINGH MALOTH
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxJavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptx
 
web designing course bangalore
web designing course bangaloreweb designing course bangalore
web designing course bangalore
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
 
Java script
Java scriptJava script
Java script
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
Java script by Act Academy
Java script by Act AcademyJava script by Act Academy
Java script by Act Academy
 
Javascript - Ebook (A Quick Guide)
Javascript - Ebook (A Quick Guide)Javascript - Ebook (A Quick Guide)
Javascript - Ebook (A Quick Guide)
 
Java script hello world
Java script hello worldJava script hello world
Java script hello world
 
Javascript
JavascriptJavascript
Javascript
 
Basic JavaScript Tutorial
Basic JavaScript TutorialBasic JavaScript Tutorial
Basic JavaScript Tutorial
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
 
Javascript 01 (js)
Javascript 01 (js)Javascript 01 (js)
Javascript 01 (js)
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
 
8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation
 
introduction to js
introduction to jsintroduction to js
introduction to js
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 

More from Abhishek Kesharwani

Unit 1 web technology uptu slide
Unit 1 web technology uptu slideUnit 1 web technology uptu slide
Unit 1 web technology uptu slideAbhishek Kesharwani
 
Unit1 Web Technology UPTU UNIT 1
Unit1 Web Technology UPTU UNIT 1 Unit1 Web Technology UPTU UNIT 1
Unit1 Web Technology UPTU UNIT 1 Abhishek Kesharwani
 
Mtech syllabus computer science uptu
Mtech syllabus computer science uptu Mtech syllabus computer science uptu
Mtech syllabus computer science uptu Abhishek Kesharwani
 

More from Abhishek Kesharwani (20)

uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
 
uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2
 
uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2
 
uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2
 
uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2uptu web technology unit 2 Xml2
uptu web technology unit 2 Xml2
 
Unit 1 web technology uptu slide
Unit 1 web technology uptu slideUnit 1 web technology uptu slide
Unit 1 web technology uptu slide
 
Unit1 Web Technology UPTU UNIT 1
Unit1 Web Technology UPTU UNIT 1 Unit1 Web Technology UPTU UNIT 1
Unit1 Web Technology UPTU UNIT 1
 
Unit1 2
Unit1 2 Unit1 2
Unit1 2
 
Web Technology UPTU UNIT 1
Web Technology UPTU UNIT 1 Web Technology UPTU UNIT 1
Web Technology UPTU UNIT 1
 
Mtech syllabus computer science uptu
Mtech syllabus computer science uptu Mtech syllabus computer science uptu
Mtech syllabus computer science uptu
 
Wi max tutorial
Wi max tutorialWi max tutorial
Wi max tutorial
 
Virtual lan
Virtual lanVirtual lan
Virtual lan
 
Virtual lan
Virtual lanVirtual lan
Virtual lan
 
Tcp traffic control and red ecn
Tcp traffic control and red ecnTcp traffic control and red ecn
Tcp traffic control and red ecn
 

Javascript tutorial

  • 1. Javascript Tutorial What is JavaScript ? JavaScript started life as LiveScript, but Netscape changed the name, possibly because of the excitement being generated by Java.to JavaScript. JavaScript made its first appearance in Netscape 2.0 in 1995 with a name LiveScript. JavaScript is a lightweight, interpreted programming language with object-oriented capabilities that allows you to build interactivity into otherwise static HTML pages. The general-purpose core of the language has been embedded in Netscape, Internet Explorer, and other web browsers The ECMA-262 Specification defined a standard version of the core JavaScript language. JavaScript is:  JavaScript is a lightweight, interpreted programming language  Designed for creating network-centric applications  Complementary to and integrated with Java  Complementary to and integrated with HTML  Open and cross-platform Client-side JavaScript: Client-side JavaScript is the most common form of the language. The script should be included in or referenced by an HTML document for the code to be interpreted by the browser. It means that a web page need no longer be static HTML, but can include programs that interact with the user, control the browser, and dynamically create HTML content. The JavaScript client-side mechanism features many advantages over traditional CGI server-side scripts. For example, you might use JavaScript to check if the user has entered a valid e-mail address in a form field. The JavaScript code is executed when the user submits the form, and only if all the entries are valid they would be submitted to the Web Server. JavaScript can be used to trap user-initiated events such as button clicks, link navigation, and other actions that the user explicitly or implicitly initiates. Advantages of JavaScript:
  • 2. The merits of using JavaScript are:  Less serverinteraction: You can validate user input before sending the page off to the server. This saves server traffic, which means less load on your server.  Immediate feedback to the visitors: They don't have to wait for a page reload to see if they have forgotten to enter something.  Increased interactivity: You can create interfaces that react when the user hovers over them with a mouse or activates them via the keyboard.  Richer interfaces: You can use JavaScript to include such items as drag-and-drop components and sliders to give a Rich Interface to your site visitors. Limitations with JavaScript: We can not treat JavaScript as a full fledged programming language. It lacks the following important features:  Client-side JavaScript does not allow the reading or writing of files. This has been kept for security reason.  JavaScript can not be used for Networking applications because there is no such support available.  JavaScript doesn't have any multithreading or multiprocess capabilities. Once again, JavaScript is a lightweight, interpreted programming language that allows you to build interactivity into otherwise static HTML pages. JavaScript Development Tools: One of JavaScript's strengths is that expensive development tools are not usually required. You can start with a simple text editor such as Notepad. Since it is an interpreted language inside the context of a web browser, you don't even need to buy a compiler. To make our life simpler, various vendors have come up with very nice JavaScript editing tools. Few of them are listed here:  Microsoft FrontPage: Microsoft has developed a popular HTML editor called FrontPage. FrontPage also provides web developers with a number of JavaScript tools to assist in the creation of an interactive web site.  Macromedia Dreamweaver MX: Macromedia Dreamweaver MX is a very popular HTML and JavaScript editor in the professional web development crowd. It provides several handy prebuilt JavaScript components, integrates well with databases, and conforms to new standards such as XHTML and XML.  Macromedia HomeSite 5: This provided a well-liked HTML and JavaScript editor, which will manage their personal web site just fine.
  • 3. Where JavaScript is Today ? The ECMAScript Edition 4 standard will be the first update to be released in over four years. JavaScript 2.0 conforms to Edition 4 of the ECMAScript standard, and the difference between the two is extremely minor. The specification for JavaScript 2.0 can be found on the following site: http://www.ecmascript.org/ Today, Netscape's JavaScript and Microsoft's JScript conform to the ECMAScript standard, although each language still supports features that are not part of the standard. JavaScript Syntax A JavaScript consists of JavaScript statements that are placed within the <script>... </script> HTML tags in a web page. You can place the <script> tag containing your JavaScript anywhere within you web page but it is preferred way to keep it within the <head> tags. The <script> tag alert the browser program to begin interpreting all the text between these tags as a script. So simple syntax of your JavaScript will be as follows <script ...> JavaScript code </script> The script tag takes two important attributes:  language: This attribute specifies what scripting language you are using. Typically, its value will be javascript. Although recent versions of HTML (and XHTML, its successor) have phased out the use of this attribute.  type: This attribute is what is now recommended to indicate the scripting language in use and its value should be set to "text/javascript". So your JavaScript segment will look like: <script language="javascript" type="text/javascript"> JavaScript code </script> Your First JavaScript Script: Let us write our class example to print out "Hello World".
  • 4. <html> <body> <script language="javascript" type="text/javascript"> <!-- document.write("Hello World!") //--> </script> </body> </html> We added an optional HTML comment that surrounds our Javascript code. This is to save our code from a browser that does not support Javascript. The comment ends with a "//-->". Here "//" signifies a comment in Javascript, so we add that to prevent a browser from reading the end of the HTML comment in as a piece of Javascript code. Next, we call a function document.write which writes a string into our HTML document. This function can be used to write text, HTML, or both. So above code will display following result: Hello World! To understand it in better way you can Try it yourself. Whitespace and Line Breaks: JavaScript ignores spaces, tabs, and newlines that appear in JavaScript programs. Because you can use spaces, tabs, and newlines freely in your program so you are free to format and indent your programs in a neat and consistent way that makes the code easy to read and understand. Semicolons are Optional: Simple statements in JavaScript are generally followed by a semicolon character, just as they are in C, C++, and Java. JavaScript, however, allows you to omit this semicolon if your statements are each placed on a separate line. For example, the following code could be written without semicolons <script language="javascript" type="text/javascript"> <!-- var1 = 10 var2 = 20 //--> </script> But when formatted in a single line as follows, the semicolons are required:
  • 5. <script language="javascript" type="text/javascript"> <!-- var1 = 10; var2 = 20; //--> </script> Note: It is a good programming practice to use semicolons. Case Sensitivity: JavaScript is a case-sensitive language. This means that language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters. So identifiers Time, TIme and TIME will have different meanings in JavaScript. NOTE: Care should be taken while writing your variable and function names in JavaScript. Comments in JavaScript: JavaScript supports both C-style and C++-style comments, Thus:  Any text between a // and the end of a line is treated as a comment and is ignored by JavaScript.  Any text between the characters /* and */ is treated as a comment. This may span multiple lines.  JavaScript also recognizes the HTML comment opening sequence <!--. JavaScript treats this as a single- line comment, just as it does the // comment.  The HTML comment closing sequence --> is not recognized by JavaScript so it should be written as //-- >. Example: <script language="javascript" type="text/javascript"> <!-- // This is a comment. It is similar to comments in C++ /* * This is a multiline comment in JavaScript * It is very similar to comments in C Programming */ //--> </script> All the modern browsers come with built-in support for JavaScript. Many times you may need to enable or disable this support manually.
  • 6. This tutorial will make you aware the procedure of enabling and disabling JavaScript support in your browsers : Internet Explorer, Firefox and Opera. JavaScript in Internet Explorer: Here are simple steps to turn on or turn off JavaScript in your Internet Explorer: 1. Follow Tools-> Internet Options from the menu 2. Select Security tab from the dialog box 3. Click the Custom Level button 4. Scroll down till you find Scripting option 5. Select Enable radio button under Active scripting 6. Finally click OK and come out To disable JavaScript support in your Internet Explorer, you need to select Disable radio button under Active scripting. JavaScript in Firefox: Here are simple steps to turn on or turn off JavaScript in your Firefox: 1. Follow Tools-> Options from the menu 2. Select Content option from the dialog box 3. Select Enable JavaScript checkbox 4. Finally click OK and come out To disable JavaScript support in your Firefox, you should not select Enable JavaScript checkbox. JavaScript in Opera: Here are simple steps to turn on or turn off JavaScript in your Opera: 1. Follow Tools-> Preferences from the menu 2. Select Advanced option from the dialog box 3. Select Content from the listed items 4. Select Enable JavaScript checkbox 5. Finally click OK and come out
  • 7. To disable JavaScript support in your Opera, you should not select Enable JavaScript checkbox. Warning for Non-JavaScript Browsers: If you have to do something important using JavaScript then you can display a warning message to the user using <noscript> tags. You can add a noscript block immediately after the script block as follows: <html> <body> <script language="javascript" type="text/javascript"> <!-- document.write("Hello World!") //--> </script> <noscript> Sorry...JavaScript is needed to go ahead. </noscript> </body> </html> Now, if user's browser does not support JavaScript or JavaScript is not enabled then message from </noscript> will be displayed on the screen. JavaScript Placement in HTML File There is a flexibility given to include JavaScript code anywhere in an HTML document. But there are following most preferred ways to include JavaScript in your HTML file.  Script in <head>...</head> section.  Script in <body>...</body> section.  Script in <body>...</body> and <head>...</head> sections.  Script in and external file and then include in <head>...</head> section. In the following section we will see how we can put JavaScript in different ways: JavaScript in <head>...</head> section: If you want to have a script run on some event, such as when a user clicks somewhere, then you will place that script in the head as follows:
  • 8. <html> <head> <script type="text/javascript"> <!-- function sayHello() { alert("Hello World") } //--> </script> </head> <body> <input type="button" onclick="sayHello()" value="Say Hello" /> </body> </html> This will produce following result: To understand it in better way you can Try it yourself. JavaScript in <body>...</body> section: If you need a script to run as the page loads so that the script generates content in the page, the script goes in the <body> portion of the document. In this case you would not have any function defined using JavaScript: <html> <head> </head> <body> <script type="text/javascript"> <!-- document.write("Hello World") //--> </script> <p>This is web page body </p> </body> </html> This will produce following result: Advertisements Hello World This is web page body
  • 9. To understand it in better way you can Try it yourself. JavaScript in <body> and <head> sections: You can put your JavaScript code in <head> and <body> section altogether as follows: <html> <head> <script type="text/javascript"> <!-- function sayHello() { alert("Hello World") } //--> </script> </head> <body> <script type="text/javascript"> <!-- document.write("Hello World") //--> </script> <input type="button" onclick="sayHello()" value="Say Hello" /> </body> </html> This will produce following result: Advertisements Hello World To understand it in better way you can Try it yourself. JavaScript in External File : As you begin to work more extensively with JavaScript, you will likely find that there are cases where you are reusing identical JavaScript code on multiple pages of a site. You are not restricted to be maintaining identical code in multiple HTML files. The script tag provides a mechanism to allow you to store JavaScript in an external file and then include it into your HTML files. Here is an example to show how you can include an external JavaScript file in your HTML code using script tag and its src attribute:
  • 10. <html> <head> <script type="text/javascript" src="filename.js" ></script> </head> <body> ....... </body> </html> To use JavaScript from an external file source, you need to write your all JavaScript source code in a simple text file with extension ".js" and then include that file as shown above. For example, you can keep following content in filename.js file and then you can use sayHello function in your HTML file after including filename.js file: function sayHello() { alert("Hello World") } JavaScript For Loop « Previous NextChapter» Loops can execute a block of code a number of times. JavaScript Loops Loops are handy, if you want to run the same code over and over again, each time with a different value. Often this is the case when working with arrays: Instead of writing: document.write(cars[0] +"<br>"); document.write(cars[1] +"<br>"); document.write(cars[2] +"<br>"); document.write(cars[3] +"<br>");
  • 11. document.write(cars[4] +"<br>"); document.write(cars[5] +"<br>"); You can write: for (vari=0;i<cars.length;i++) { document.write(cars[i] +"<br>"); } Try it yourself » Different Kinds of Loops JavaScript supports different kinds of loops:  for - loopsthrougha blockof code a numberof times  for/in - loopsthroughthe propertiesof anobject  while - loopsthrougha blockof code while aspecifiedconditionistrue  do/while - alsoloopsthrougha blockof code while aspecifiedconditionistrue The For Loop The for loop is often the tool you will use when you want to create a loop. The for loop has the following syntax: for (statement1;statement2; statement3) { thecode blockto be executed } Statement 1 is executed before the loop (the code block) starts. Statement 2 defines the condition for running the loop (the code block). Statement 3 is executed each time after the loop (the code block) has been executed.
  • 12. Example for (vari=0; i<5; i++) { x=x + "The numberis" + i + "<br>"; } Try it yourself » From the example above, you can read: Statement 1 sets a variable before the loop starts (var i=0). Statement 2 defines the condition for the loop to run (i must be less than 5). Statement 3 increases a value (i++) each time the code block in the loop has been executed. Statement 1 Normally you will use statement 1 to initiate the variable used in the loop (var i=0). This is not always the case, JavaScript doesn't care, and statement 1 is optional. You can initiate any (or many) values in statement 1: Example: for (vari=0,len=cars.length;i<len;i++) { document.write(cars[i] +"<br>"); } Try it yourself » And you can omit statement 1 (like when your values are set before the loop starts): Example: var i=2,len=cars.length; for (;i<len;i++) { document.write(cars[i] +"<br>"); }
  • 13. Try it yourself » Statement 2 Often statement 2 is used to evaluate the condition of the initial variable. This is not always the case, JavaScript doesn't care, and statement 2 is optional. If statement 2 returns true, the loop will start over again, if it returns false, the loop will end. If you omitstatement2,you mustprovide a break inside the loop.Otherwise the loopwill neverend.Thiswill crash your browser.Readaboutbreaksina laterchapter of thistutorial. Statement 3 Often statement 3 increases the initial variable. This is not always the case, JavaScript doesn't care, and statement 3 is optional. Statement 3 could do anything. The increment could be negative (i--), or larger (i=i+15). Statement 3 can also be omitted (like when you have corresponding code inside the loop): Example: var i=0,len=cars.length; for (;i<len;) { document.write(cars[i] +"<br>"); i++; } Try it yourself »
  • 14. The For/In Loop The JavaScript for/in statement loops through the properties of an object: Example var person={fname:"John",lname:"Doe",age:25}; for (x inperson) { txt=txt+ person[x]; } You will learn more about the for / in loop in the chapter about JavaScript objects. The While Loop The while loop and the do/while loop will be explained in the next chapter.