SlideShare a Scribd company logo
JAVA SCRIPT
LOADING….
INTRODUCTIONJavaScript (aka ECMAScript) is an easy way to make your website visually attractive to clients and other viewers by adding interactivity and dynamics to HTML pages.  Explains ABOUT:                           why one would use JavaScript in their HTML website design.                          It also has links to JavaScript tools, readings and samples for                                     those who prefer ready-to-run effects.
What is java scriptJavaScript is the most popular scripting language on the internet, and works in all major browsers, such as Internet Explorer, Firefox Chrome, Opera, and Safari.JavaScript is a scripted language which is object oriented, event-driven, and platform independent.Each of these modern concepts in programming methodology are easier to work with in 'new' languages rather than being bolted on to older ones. And the syntax is similar to that of C and Java. This makes JavaScript a 'good' choice for learning as a first programming language.
JavaScript was designed to add interactivity to HTML pages JavaScript is a scripting language A scripting language is a lightweight programming languageJavaScript is usually embedded directly into HTML pagesJavaScript is an interpreted language (means that scripts execute without preliminary compilation) Everyone can use JavaScript without purchasing a license
Why should a webpage author use JavaScript in addition to HTML?
Java script  allows  client-side user form validationJava script provides seamless integration with user plug-insJava script allows access to some system information
Are Java and JavaScript the same?NO!Java and JavaScript are two completely different languages in both concept and design!Java (developed by Sun Microsystems) is a powerful and much more complex programming language - in the same category as C and C++.
The Real Name is ECMAScript:JavaScript's official name is ECMAScript.ECMAScript is developed and maintained by the ECMA organization.ECMA-262 is the official JavaScript standard.The language was invented by Brendan Eich at Netscape (with Navigator 2.0), and has appeared in all Netscape and Microsoft browsers since 1996.The development of ECMA-262 started in 1996, and the first edition of was adopted by the ECMA General Assembly in June 1997.The standard was approved as an international ISO (ISO/IEC 16262) standard in 1998.The development of the standard is still in progress.
EXAMPLESPut a JavaScript into an HTML page<html><body><script type="text/javascript">document.write("Hello World!");</script></body></html> HELLO WORLD
JavaScript is Case Sensitive:Unlike HTML, JavaScript is case sensitive - therefore watch your capitalization closely when you write JavaScript statements, create or call variables, objects and functions.JavaScript Statements:A JavaScript statement is a command to a browser. The purpose of the command is to tell the browser what to do. This JavaScript statement tells the browser to write "Hello Dolly" to the web page:Note: Using semicolons makes it possible to write multiple statements on one line.
Java   Script CommentsComments can be added to explain the JavaScript, or to make the code more readable.>Single line comments start with “//”:.>JavaScript Multi-Line Comments:Multi line comments start with /* and end with */.<script type="text/javascript">// Write a headingdocument.write("<h1>This is a heading</h1>");// Write two paragraphs:document.write("<p>This is a paragraph.</p>");document.write("<p>This is another paragraph.</p>");</script> THIS IS HEADINGTHIS IS HEADINGTHIS IS HEADING
Java variables JavaScript Variables       As with algebra, JavaScript variables are used to hold values or expressions.  A variable can have a short name, like x, or a more descriptive name, like car name.Rules for JavaScript variable names:                              Variable names are case sensitive (y and Y are two different variables)                               Variable names must begin with a letter or the underscore character Note:Because JavaScript is case-sensitive, variable names are case-sensitive.
Declaring (Creating) JavaScript Variables                Creating variables in JavaScript is most often referred to as "declaring" variables.You can declare JavaScript variables with the var statement.EXAMPLE:var x;varcarname;Assigning Values to Undeclared JavaScript Variables:If you assign values to variables that have not yet been declared, the variables will automatically be declared.These statements:x=5;carname="Volvo";
Redeclaring  JavaScript VariablesAs with algebra, you can do arithmetic operations with JavaScript variables:y=x-5;z=y+5;JavaScript Operators= is used to assign values.+ is used to add values.JavaScript Arithmetic OperatorsArithmetic operators are used to perform arithmetic between variables and/or values.Given that y=5, the table below explains the arithmetic operators:              EXAMPLES: + , -,  *,   /,  %
JavaScript Assignment OperatorsAssignment operators are used to assign values to JavaScript variables.Given that x=10 and y=5, the table below explains the assignment operators:OPERATORS=, += ,-=,   *=,  /=,  %=The + Operator Used on StringsThe + operator can also be used to add string variables or text values together.txt1="What a very";txt2="nice day";txt3=txt1+txt2;
Adding Strings and NumbersThe rule is:  If you add a number  and a string, the result will be a string!x=5+5;document.write(x);x="5"+"5";document.write(x);x=5+"5";document.write(x);x="5"+5;document.write(x);
Comparison Operators
Logical OperatorsLogical Operators:Logical operators are used to determine the logic between variables or values.Given that x=6 and y=3, the table below explains the logical operators:
Conditional OperatorSyntaxExample:If the variable visitor has the value of "PRES", then the variable greeting will be assigned the value "Dear President " else i t will be assigned "Dear".
Conditional Statements:Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.In JavaScript we have the following conditional statements:if statement- use this statement to execute some code only if a specified condition is true    if...else statement- use this statement to execute some code if the condition is true and another code if the condition is false if...else if....else statement- use this statement to select one of many blocks of code to be executed switch statement - use this statement to select one of many blocks of code to be executed
Syntax
The JavaScript Switch StatementUse the switch statement to select one of many blocks of code to be executed.Syntax
JavaScript Popup BoxesAlert Box:An alert box is often used if you want to make sure information comes through to the user.When an alert box pops up, the userwill have to click "OK" to procSyntaxalert("sometext");Confirm BoxA confirm box is often used if you want the user to verify or accept something.  When a confirm box pops up, the user will have to click either "OK" or "Cancel" to proceed.  If the user clicks "OK", the box returns true. If the user clicks "Cancel", the box returns false.Syntaxconfirm("sometext");
Prompt BoxA prompt box is often used if you want the user to input a value before entering a page. When a prompt box pops up, the user will have to click either "OK" or "Cancel" to proceed after entering an input value. If the user clicks "OK" the box returns the input value. If the user clicks "Cancel" the box returns null.Syntaxprompt("sometext","defaultvalue");
Javascript
JavaScript FunctionsTo keep the browser from executing a script when the page loads, you can put your script into a function.A function contains code that will be executed by an event or by a call to the function.You may call a function from anywhere within a page (or even from other pages if the function is embedded in an external .js file).Functions can be defined both in the <head> and in the <body> section of a document. However, to assure that a function is read/loaded by the browser before it is called, it could be wise to put functions in the <head> section.How to Define a Functionfunction functionname(var1,var2,...,varX){some code}
EventsBy using JavaScript, we have the ability to create dynamic web pages. Events are actions that can be detected by JavaScript.Every element on a web page has certain events which can trigger a JavaScript. For example, we can use the onClick event of a button element to indicate that a function will run when a user clicks on the button. We define the events in the HTML tags.Examples of events:                        A mouse click                         A web page or an image loading Mousing over a hot spot on the web page                        Selecting an input field in an HTML                        form Submitting                        an HTML form                        A keystroke
On Load and on UnloadThe onLoad event is often used to check the visitor's browser type and browser version, and load the proper version of the web page based on the information.Some of other eventsonFocus, onBlur and onChangeonSubmitonMouseOver and onMouseOut
Exception handlingWhen browsing Web pages on the internet, we all have seen a JavaScript alert box telling us there is a runtime error and asking "Do you wish to debug?". Error message like this may be useful for developers but not for users. When users see errors, they often leave the Web page.This chapter will teach you how to catch and handle JavaScript error messages, so you don't lose your audience.Try catch block try  {  //Run some code here  }catch(err)  {  //Handle errors here  }
Throw and throwsThe throw statement allows you to create an exception. If you use this statement together with the try...catch statement, you can control program flow and generate accurate error messages.syntaxthrow(exception)
<html><body><script type="text/javascript">var x=prompt("Enter a number between 0 and 10:","");try  {   if(x>10)    {    throw "Err1";    }  else if(x<0)    {    throw "Err2";    }  else if(isNaN(x))    {    throw "Err3";    }  }>
catch(er)  {  if(er=="Err1")    {    alert("Error! The value is too high");    }  if(er=="Err2")    {    alert("Error! The value is too low");    }  if(er=="Err3")    {    alert("Error! The value is not a number");    }  }</script></body></html
Insert Special CharactersThe backslash (\) is used to insert apostrophes, new lines, quotes, and other special characters into a text string.
JavaScriptObjectsJavaScript is an Object Oriented Programming (OOP) language.An OOP language allows you to define your own objects and make your own variable types.Array Object
Javascript
String objectThe String object is used to manipulate a stored piece of text.String objects are created with new String().Syntaxvar txt = new String(string); or var txt = string;
Javascript
Date Object Properties
RegExp ObjectA regular expression is an object that describes a pattern of characters.Regular expressions are used to perform pattern-matching and "search-and-replace" functions on text.Syntaxpattern specifies the pattern of an expression
modifiers specify if a search should be global, case-sensitive, etc. ModifiersModifiers are used to perform case-insensitive and global searches:
ADVANCED JAVA SCRIPT OBJECTS
The Navigator ObjectThe Navigator object contains all information about the visitor's browser. We are going to look at two properties of the Navigator object:appName - holds the name of the browser
appVersion - holds, among other things, the version of the browser Example:<html><body><script type="text/javascript">var browser=navigator.appName;varb_version=navigator.appVersion;var version=parseFloat(b_version);document.write("Browser name: "+ browser);document.write("<br />");document.write("Browser version: "+ version);</script></body></html> OUTPUT:Browser name:Microsoft Internet ExplorerBrowser version:4
COOKIESA cookie is a variable that is stored on the visitor's computer. Each time the same computer requests a page with a browser,   it will send the cookie too.With JavaScript, you can both create and retrieve cookie values.A cookie is often used to identify a user.Examples of cookies:Name cookie - The first time a visitor arrives to your web page, he or she must fill in her/his name. The name is then stored in a cookie. Next time the visitor arrives at your page, he or she could get a welcome message like "Welcome John Doe!" The name is retrieved from the stored cookie
Password cookie - The first time a visitor arrives to your web page, he or she must fill in a password. The password is then stored in a cookie. Next time the visitor arrives at your page, the password is retrieved from the cookie
Date cookie - The first time a visitor arrives to your web page, the current date is stored in a cookie. Next time the visitor arrives at your page, he or she could get a message like "Your last visit was on Tuesday August 11, 2005!" The date is retrieved from the stored cookie                                    Create and Store a CookieIn this example we will create a cookie that stores the name of a visitor. The first time a visitor arrives to the web page, he or she will be asked to  fill in her/his name. The name is then stored in a cookie. The next time the visitor arrives at the same page, he or she will get welcome message.First, we create a function that stores the name of the visitor in a cookie                    VARIABLESThe parameters of the function above hold the name of the cookie, the value of the cookie, and the number of days until the cookie expires.In the function above we first convert the number of days to a valid date, then we add the number of days until the cookie should expire. After that we store the cookie name, cookie value and the expiration date in the document.cookie object.
JavaScript Form ValidationJavaScript can be used to validate data in HTML forms before sending off the content to a server.Javascript  perform the following checks typically:            whether required fields are left empty
            whether E-mail id entered by user is valid or not
            whether Date entered is valid or  not
            whether  user has entered text in numerical formatExample:<html><head><script type="text/javascript">function validate_required(field,alerttxt){with (field)  {  if (value==null||value=="")    {    alert(alerttxt);return false;    }  else    {    return true;    }  }}function validate_form(thisform){
with (thisform)  {  if (validate_required(email,"Email must be filled out!")==false)  {email.focus();return false;}  }}</script></head><body><form action="submit.htm" onsubmit="return validate_form(this)" method="post">Email: <input type="text" name="email" size="30"><input type="submit" value="Submit"></form></body></html>
JavaScript ObjectsCreating Your Own ObjectsThere are different ways to create a new object:1. Create a direct instance of an objectThe following code creates an instance of an object and adds four properties to it:personObj=new Object();personObj.firstname="John";personObj.lastname="Doe";personObj.age=50;personObj.eyecolor="blue";2. Create a template of an objectThe template defines the structure of an object:function person(firstname,lastname,age,eyecolor){this.firstname=firstname;this.lastname=lastname;this.age=age;this.eyecolor=eyecolor;}With the help of template ,we can create new instances of object like this:
EXAMPLEmyFather=new person("John","Doe",50,"blue");myMother=new person("Sally","Rally",48,"green");
Ad

More Related Content

What's hot (20)

Javascript variables and datatypes
Javascript variables and datatypesJavascript variables and datatypes
Javascript variables and datatypes
Varun C M
 
Javascript
JavascriptJavascript
Javascript
guest03a6e6
 
javascript objects
javascript objectsjavascript objects
javascript objects
Vijay Kalyan
 
Javascript
JavascriptJavascript
Javascript
Momentum Design Lab
 
Introduction to JavaScript (1).ppt
Introduction to JavaScript (1).pptIntroduction to JavaScript (1).ppt
Introduction to JavaScript (1).ppt
MuhammadRehan856177
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Java script final presentation
Java script final presentationJava script final presentation
Java script final presentation
Adhoura Academy
 
JavaScript & Dom Manipulation
JavaScript & Dom ManipulationJavaScript & Dom Manipulation
JavaScript & Dom Manipulation
Mohammed Arif
 
JavaScript Tutorial
JavaScript  TutorialJavaScript  Tutorial
JavaScript Tutorial
Bui Kiet
 
JavaScript Programming
JavaScript ProgrammingJavaScript Programming
JavaScript Programming
Sehwan Noh
 
Java script
Java scriptJava script
Java script
Abhishek Kesharwani
 
Javascript
JavascriptJavascript
Javascript
Manav Prasad
 
Java script ppt
Java script pptJava script ppt
Java script ppt
The Health and Social Care Information Centre
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
Manvendra Singh
 
Javascript 101
Javascript 101Javascript 101
Javascript 101
Shlomi Komemi
 
Lab #2: Introduction to Javascript
Lab #2: Introduction to JavascriptLab #2: Introduction to Javascript
Lab #2: Introduction to Javascript
Walid Ashraf
 
JavaScript - Chapter 3 - Introduction
 JavaScript - Chapter 3 - Introduction JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
WebStackAcademy
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
Amit Tyagi
 
3. Java Script
3. Java Script3. Java Script
3. Java Script
Jalpesh Vasa
 
JavaScript - Chapter 8 - Objects
 JavaScript - Chapter 8 - Objects JavaScript - Chapter 8 - Objects
JavaScript - Chapter 8 - Objects
WebStackAcademy
 

Viewers also liked (20)

Javascript validating form
Javascript validating formJavascript validating form
Javascript validating form
Jesus Obenita Jr.
 
Form Validation in JavaScript
Form Validation in JavaScriptForm Validation in JavaScript
Form Validation in JavaScript
Ravi Bhadauria
 
JavaScript: Events Handling
JavaScript: Events HandlingJavaScript: Events Handling
JavaScript: Events Handling
Yuriy Bezgachnyuk
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
David Lindkvist
 
Bridges to Practice
Bridges to PracticeBridges to Practice
Bridges to Practice
Ms_Duffy
 
Java script202
Java script202Java script202
Java script202
Wasiq Zia
 
Javascript
JavascriptJavascript
Javascript
Sushma M
 
Mobile Shopping
Mobile ShoppingMobile Shopping
Mobile Shopping
Mom Central Consulting
 
Form Validation
Form ValidationForm Validation
Form Validation
Graeme Smith
 
validation-of-email-addresses-collected-offline
validation-of-email-addresses-collected-offlinevalidation-of-email-addresses-collected-offline
validation-of-email-addresses-collected-offline
Kenscio Digital Marketing Pvt Ltd
 
Java Regular Expression PART II
Java Regular Expression PART IIJava Regular Expression PART II
Java Regular Expression PART II
Abdul Rahman Sherzad
 
JavaScript Event Loop
JavaScript Event LoopJavaScript Event Loop
JavaScript Event Loop
Designveloper
 
Email Validation
Email ValidationEmail Validation
Email Validation
Hashim Lokasher
 
The Role Of Java Script
The Role Of Java ScriptThe Role Of Java Script
The Role Of Java Script
Christian Heilmann
 
How Salesforce.com uses Hadoop
How Salesforce.com uses HadoopHow Salesforce.com uses Hadoop
How Salesforce.com uses Hadoop
Narayan Bharadwaj
 
Frames tables forms
Frames tables formsFrames tables forms
Frames tables forms
nobel mujuji
 
JavaScript Operators
JavaScript OperatorsJavaScript Operators
JavaScript Operators
Charles Russell
 
Introdution to HTML 5
Introdution to HTML 5Introdution to HTML 5
Introdution to HTML 5
onkar_bhosle
 
Html 5
Html 5Html 5
Html 5
manujayarajkm
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
Steven Chipman
 
Ad

Similar to Javascript (20)

Javascript survival for CSBN Sophomores
Javascript survival for CSBN SophomoresJavascript survival for CSBN Sophomores
Javascript survival for CSBN Sophomores
Andy de Vera
 
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
wabii3179com
 
Introduction to Java Scripting
Introduction to Java ScriptingIntroduction to Java Scripting
Introduction to Java Scripting
fantasticdigitaltools
 
8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation
JohnLagman3
 
Basic Java script handouts for students
Basic Java script handouts for students Basic Java script handouts for students
Basic Java script handouts for students
shafiq sangi
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
ambuj pathak
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
ch samaram
 
Javascript tutorial
Javascript tutorialJavascript tutorial
Javascript tutorial
Abhishek Kesharwani
 
Java script Basic
Java script BasicJava script Basic
Java script Basic
Jaya Kumari
 
JavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript HereJavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript Here
Laurence Svekis ✔
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
nanjil1984
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
Shrijan Tiwari
 
Unit 4 Java script.pptx
Unit 4 Java script.pptxUnit 4 Java script.pptx
Unit 4 Java script.pptx
Gangesh8
 
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
rish15r890
 
Java scipt
Java sciptJava scipt
Java scipt
Ashish Gajjar Samvad Cell
 
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
kavigamage62
 
Unit 2.4
Unit 2.4Unit 2.4
Unit 2.4
Abhishek Kesharwani
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
Go4Guru
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
Mohammed Hussein
 
Web programming
Web programmingWeb programming
Web programming
Leo Mark Villar
 
Javascript survival for CSBN Sophomores
Javascript survival for CSBN SophomoresJavascript survival for CSBN Sophomores
Javascript survival for CSBN Sophomores
Andy de Vera
 
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
internet Chapter 4-JavascripPrepare a ppt of video compression techniques bas...
wabii3179com
 
8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation8.-Javascript-report powerpoint presentation
8.-Javascript-report powerpoint presentation
JohnLagman3
 
Basic Java script handouts for students
Basic Java script handouts for students Basic Java script handouts for students
Basic Java script handouts for students
shafiq sangi
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
ambuj pathak
 
Basics java scripts
Basics java scriptsBasics java scripts
Basics java scripts
ch samaram
 
Java script Basic
Java script BasicJava script Basic
Java script Basic
Jaya Kumari
 
JavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript HereJavaScript Core fundamentals - Learn JavaScript Here
JavaScript Core fundamentals - Learn JavaScript Here
Laurence Svekis ✔
 
Introduction to java script
Introduction to java scriptIntroduction to java script
Introduction to java script
nanjil1984
 
Session vii(java scriptbasics)
Session vii(java scriptbasics)Session vii(java scriptbasics)
Session vii(java scriptbasics)
Shrijan Tiwari
 
Unit 4 Java script.pptx
Unit 4 Java script.pptxUnit 4 Java script.pptx
Unit 4 Java script.pptx
Gangesh8
 
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
rish15r890
 
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
java-scriptcdvcx vnbm,azsdfghjkml;sxdfcgmndxfcgvhb nmfctgvbhjnm ,cfgvb nm,xc ...
kavigamage62
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
Go4Guru
 
Ad

More from Nagarajan (18)

Chapter3
Chapter3Chapter3
Chapter3
Nagarajan
 
Chapter2
Chapter2Chapter2
Chapter2
Nagarajan
 
Chapter1
Chapter1Chapter1
Chapter1
Nagarajan
 
Minimax
MinimaxMinimax
Minimax
Nagarajan
 
I/O System
I/O SystemI/O System
I/O System
Nagarajan
 
Scheduling algorithm (chammu)
Scheduling algorithm (chammu)Scheduling algorithm (chammu)
Scheduling algorithm (chammu)
Nagarajan
 
Real time os(suga)
Real time os(suga) Real time os(suga)
Real time os(suga)
Nagarajan
 
Process synchronization(deepa)
Process synchronization(deepa)Process synchronization(deepa)
Process synchronization(deepa)
Nagarajan
 
Posix threads(asha)
Posix threads(asha)Posix threads(asha)
Posix threads(asha)
Nagarajan
 
Monitor(karthika)
Monitor(karthika)Monitor(karthika)
Monitor(karthika)
Nagarajan
 
Cpu scheduling(suresh)
Cpu scheduling(suresh)Cpu scheduling(suresh)
Cpu scheduling(suresh)
Nagarajan
 
Backward chaining(bala,karthi,rajesh)
Backward chaining(bala,karthi,rajesh)Backward chaining(bala,karthi,rajesh)
Backward chaining(bala,karthi,rajesh)
Nagarajan
 
Inferno
InfernoInferno
Inferno
Nagarajan
 
Introduction Of Artificial neural network
Introduction Of Artificial neural networkIntroduction Of Artificial neural network
Introduction Of Artificial neural network
Nagarajan
 
Perceptron
PerceptronPerceptron
Perceptron
Nagarajan
 
Back propagation
Back propagationBack propagation
Back propagation
Nagarajan
 
Ms access
Ms accessMs access
Ms access
Nagarajan
 
Adaline madaline
Adaline madalineAdaline madaline
Adaline madaline
Nagarajan
 
Scheduling algorithm (chammu)
Scheduling algorithm (chammu)Scheduling algorithm (chammu)
Scheduling algorithm (chammu)
Nagarajan
 
Real time os(suga)
Real time os(suga) Real time os(suga)
Real time os(suga)
Nagarajan
 
Process synchronization(deepa)
Process synchronization(deepa)Process synchronization(deepa)
Process synchronization(deepa)
Nagarajan
 
Posix threads(asha)
Posix threads(asha)Posix threads(asha)
Posix threads(asha)
Nagarajan
 
Monitor(karthika)
Monitor(karthika)Monitor(karthika)
Monitor(karthika)
Nagarajan
 
Cpu scheduling(suresh)
Cpu scheduling(suresh)Cpu scheduling(suresh)
Cpu scheduling(suresh)
Nagarajan
 
Backward chaining(bala,karthi,rajesh)
Backward chaining(bala,karthi,rajesh)Backward chaining(bala,karthi,rajesh)
Backward chaining(bala,karthi,rajesh)
Nagarajan
 
Introduction Of Artificial neural network
Introduction Of Artificial neural networkIntroduction Of Artificial neural network
Introduction Of Artificial neural network
Nagarajan
 
Back propagation
Back propagationBack propagation
Back propagation
Nagarajan
 
Adaline madaline
Adaline madalineAdaline madaline
Adaline madaline
Nagarajan
 

Recently uploaded (20)

Envenomation---Clinical Toxicology. pptx
Envenomation---Clinical Toxicology. pptxEnvenomation---Clinical Toxicology. pptx
Envenomation---Clinical Toxicology. pptx
rekhapositivity
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
Diabetic neuropathy peripheral autonomic
Diabetic neuropathy peripheral autonomicDiabetic neuropathy peripheral autonomic
Diabetic neuropathy peripheral autonomic
Pankaj Patawari
 
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd yearVitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
ARUN KUMAR
 
Unit 5: Dividend Decisions and its theories
Unit 5: Dividend Decisions and its theoriesUnit 5: Dividend Decisions and its theories
Unit 5: Dividend Decisions and its theories
bharath321164
 
Social Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy StudentsSocial Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy Students
DrNidhiAgarwal
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
Handling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptxHandling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptx
AuthorAIDNationalRes
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Fundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic CommunicationsFundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic Communications
Jordan Williams
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
Envenomation---Clinical Toxicology. pptx
Envenomation---Clinical Toxicology. pptxEnvenomation---Clinical Toxicology. pptx
Envenomation---Clinical Toxicology. pptx
rekhapositivity
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
Diabetic neuropathy peripheral autonomic
Diabetic neuropathy peripheral autonomicDiabetic neuropathy peripheral autonomic
Diabetic neuropathy peripheral autonomic
Pankaj Patawari
 
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd yearVitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
ARUN KUMAR
 
Unit 5: Dividend Decisions and its theories
Unit 5: Dividend Decisions and its theoriesUnit 5: Dividend Decisions and its theories
Unit 5: Dividend Decisions and its theories
bharath321164
 
Social Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy StudentsSocial Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy Students
DrNidhiAgarwal
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
Handling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptxHandling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptx
AuthorAIDNationalRes
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Fundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic CommunicationsFundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic Communications
Jordan Williams
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 

Javascript

  • 3. INTRODUCTIONJavaScript (aka ECMAScript) is an easy way to make your website visually attractive to clients and other viewers by adding interactivity and dynamics to HTML pages. Explains ABOUT: why one would use JavaScript in their HTML website design. It also has links to JavaScript tools, readings and samples for those who prefer ready-to-run effects.
  • 4. What is java scriptJavaScript is the most popular scripting language on the internet, and works in all major browsers, such as Internet Explorer, Firefox Chrome, Opera, and Safari.JavaScript is a scripted language which is object oriented, event-driven, and platform independent.Each of these modern concepts in programming methodology are easier to work with in 'new' languages rather than being bolted on to older ones. And the syntax is similar to that of C and Java. This makes JavaScript a 'good' choice for learning as a first programming language.
  • 5. JavaScript was designed to add interactivity to HTML pages JavaScript is a scripting language A scripting language is a lightweight programming languageJavaScript is usually embedded directly into HTML pagesJavaScript is an interpreted language (means that scripts execute without preliminary compilation) Everyone can use JavaScript without purchasing a license
  • 6. Why should a webpage author use JavaScript in addition to HTML?
  • 7. Java script allows client-side user form validationJava script provides seamless integration with user plug-insJava script allows access to some system information
  • 8. Are Java and JavaScript the same?NO!Java and JavaScript are two completely different languages in both concept and design!Java (developed by Sun Microsystems) is a powerful and much more complex programming language - in the same category as C and C++.
  • 9. The Real Name is ECMAScript:JavaScript's official name is ECMAScript.ECMAScript is developed and maintained by the ECMA organization.ECMA-262 is the official JavaScript standard.The language was invented by Brendan Eich at Netscape (with Navigator 2.0), and has appeared in all Netscape and Microsoft browsers since 1996.The development of ECMA-262 started in 1996, and the first edition of was adopted by the ECMA General Assembly in June 1997.The standard was approved as an international ISO (ISO/IEC 16262) standard in 1998.The development of the standard is still in progress.
  • 10. EXAMPLESPut a JavaScript into an HTML page<html><body><script type="text/javascript">document.write("Hello World!");</script></body></html> HELLO WORLD
  • 11. JavaScript is Case Sensitive:Unlike HTML, JavaScript is case sensitive - therefore watch your capitalization closely when you write JavaScript statements, create or call variables, objects and functions.JavaScript Statements:A JavaScript statement is a command to a browser. The purpose of the command is to tell the browser what to do. This JavaScript statement tells the browser to write "Hello Dolly" to the web page:Note: Using semicolons makes it possible to write multiple statements on one line.
  • 12. Java Script CommentsComments can be added to explain the JavaScript, or to make the code more readable.>Single line comments start with “//”:.>JavaScript Multi-Line Comments:Multi line comments start with /* and end with */.<script type="text/javascript">// Write a headingdocument.write("<h1>This is a heading</h1>");// Write two paragraphs:document.write("<p>This is a paragraph.</p>");document.write("<p>This is another paragraph.</p>");</script> THIS IS HEADINGTHIS IS HEADINGTHIS IS HEADING
  • 13. Java variables JavaScript Variables As with algebra, JavaScript variables are used to hold values or expressions. A variable can have a short name, like x, or a more descriptive name, like car name.Rules for JavaScript variable names: Variable names are case sensitive (y and Y are two different variables) Variable names must begin with a letter or the underscore character Note:Because JavaScript is case-sensitive, variable names are case-sensitive.
  • 14. Declaring (Creating) JavaScript Variables Creating variables in JavaScript is most often referred to as "declaring" variables.You can declare JavaScript variables with the var statement.EXAMPLE:var x;varcarname;Assigning Values to Undeclared JavaScript Variables:If you assign values to variables that have not yet been declared, the variables will automatically be declared.These statements:x=5;carname="Volvo";
  • 15. Redeclaring JavaScript VariablesAs with algebra, you can do arithmetic operations with JavaScript variables:y=x-5;z=y+5;JavaScript Operators= is used to assign values.+ is used to add values.JavaScript Arithmetic OperatorsArithmetic operators are used to perform arithmetic between variables and/or values.Given that y=5, the table below explains the arithmetic operators: EXAMPLES: + , -, *, /, %
  • 16. JavaScript Assignment OperatorsAssignment operators are used to assign values to JavaScript variables.Given that x=10 and y=5, the table below explains the assignment operators:OPERATORS=, += ,-=, *=, /=, %=The + Operator Used on StringsThe + operator can also be used to add string variables or text values together.txt1="What a very";txt2="nice day";txt3=txt1+txt2;
  • 17. Adding Strings and NumbersThe rule is: If you add a number and a string, the result will be a string!x=5+5;document.write(x);x="5"+"5";document.write(x);x=5+"5";document.write(x);x="5"+5;document.write(x);
  • 19. Logical OperatorsLogical Operators:Logical operators are used to determine the logic between variables or values.Given that x=6 and y=3, the table below explains the logical operators:
  • 20. Conditional OperatorSyntaxExample:If the variable visitor has the value of "PRES", then the variable greeting will be assigned the value "Dear President " else i t will be assigned "Dear".
  • 21. Conditional Statements:Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.In JavaScript we have the following conditional statements:if statement- use this statement to execute some code only if a specified condition is true if...else statement- use this statement to execute some code if the condition is true and another code if the condition is false if...else if....else statement- use this statement to select one of many blocks of code to be executed switch statement - use this statement to select one of many blocks of code to be executed
  • 23. The JavaScript Switch StatementUse the switch statement to select one of many blocks of code to be executed.Syntax
  • 24. JavaScript Popup BoxesAlert Box:An alert box is often used if you want to make sure information comes through to the user.When an alert box pops up, the userwill have to click "OK" to procSyntaxalert("sometext");Confirm BoxA confirm box is often used if you want the user to verify or accept something. When a confirm box pops up, the user will have to click either "OK" or "Cancel" to proceed. If the user clicks "OK", the box returns true. If the user clicks "Cancel", the box returns false.Syntaxconfirm("sometext");
  • 25. Prompt BoxA prompt box is often used if you want the user to input a value before entering a page. When a prompt box pops up, the user will have to click either "OK" or "Cancel" to proceed after entering an input value. If the user clicks "OK" the box returns the input value. If the user clicks "Cancel" the box returns null.Syntaxprompt("sometext","defaultvalue");
  • 27. JavaScript FunctionsTo keep the browser from executing a script when the page loads, you can put your script into a function.A function contains code that will be executed by an event or by a call to the function.You may call a function from anywhere within a page (or even from other pages if the function is embedded in an external .js file).Functions can be defined both in the <head> and in the <body> section of a document. However, to assure that a function is read/loaded by the browser before it is called, it could be wise to put functions in the <head> section.How to Define a Functionfunction functionname(var1,var2,...,varX){some code}
  • 28. EventsBy using JavaScript, we have the ability to create dynamic web pages. Events are actions that can be detected by JavaScript.Every element on a web page has certain events which can trigger a JavaScript. For example, we can use the onClick event of a button element to indicate that a function will run when a user clicks on the button. We define the events in the HTML tags.Examples of events: A mouse click A web page or an image loading Mousing over a hot spot on the web page Selecting an input field in an HTML form Submitting an HTML form A keystroke
  • 29. On Load and on UnloadThe onLoad event is often used to check the visitor's browser type and browser version, and load the proper version of the web page based on the information.Some of other eventsonFocus, onBlur and onChangeonSubmitonMouseOver and onMouseOut
  • 30. Exception handlingWhen browsing Web pages on the internet, we all have seen a JavaScript alert box telling us there is a runtime error and asking "Do you wish to debug?". Error message like this may be useful for developers but not for users. When users see errors, they often leave the Web page.This chapter will teach you how to catch and handle JavaScript error messages, so you don't lose your audience.Try catch block try  {  //Run some code here  }catch(err)  {  //Handle errors here  }
  • 31. Throw and throwsThe throw statement allows you to create an exception. If you use this statement together with the try...catch statement, you can control program flow and generate accurate error messages.syntaxthrow(exception)
  • 32. <html><body><script type="text/javascript">var x=prompt("Enter a number between 0 and 10:","");try  {   if(x>10)    {    throw "Err1";    }  else if(x<0)    {    throw "Err2";    }  else if(isNaN(x))    {    throw "Err3";    }  }>
  • 33. catch(er)  {  if(er=="Err1")    {    alert("Error! The value is too high");    }  if(er=="Err2")    {    alert("Error! The value is too low");    }  if(er=="Err3")    {    alert("Error! The value is not a number");    }  }</script></body></html
  • 34. Insert Special CharactersThe backslash (\) is used to insert apostrophes, new lines, quotes, and other special characters into a text string.
  • 35. JavaScriptObjectsJavaScript is an Object Oriented Programming (OOP) language.An OOP language allows you to define your own objects and make your own variable types.Array Object
  • 37. String objectThe String object is used to manipulate a stored piece of text.String objects are created with new String().Syntaxvar txt = new String(string); or var txt = string;
  • 40. RegExp ObjectA regular expression is an object that describes a pattern of characters.Regular expressions are used to perform pattern-matching and "search-and-replace" functions on text.Syntaxpattern specifies the pattern of an expression
  • 41. modifiers specify if a search should be global, case-sensitive, etc. ModifiersModifiers are used to perform case-insensitive and global searches:
  • 43. The Navigator ObjectThe Navigator object contains all information about the visitor's browser. We are going to look at two properties of the Navigator object:appName - holds the name of the browser
  • 44. appVersion - holds, among other things, the version of the browser Example:<html><body><script type="text/javascript">var browser=navigator.appName;varb_version=navigator.appVersion;var version=parseFloat(b_version);document.write("Browser name: "+ browser);document.write("<br />");document.write("Browser version: "+ version);</script></body></html> OUTPUT:Browser name:Microsoft Internet ExplorerBrowser version:4
  • 45. COOKIESA cookie is a variable that is stored on the visitor's computer. Each time the same computer requests a page with a browser, it will send the cookie too.With JavaScript, you can both create and retrieve cookie values.A cookie is often used to identify a user.Examples of cookies:Name cookie - The first time a visitor arrives to your web page, he or she must fill in her/his name. The name is then stored in a cookie. Next time the visitor arrives at your page, he or she could get a welcome message like "Welcome John Doe!" The name is retrieved from the stored cookie
  • 46. Password cookie - The first time a visitor arrives to your web page, he or she must fill in a password. The password is then stored in a cookie. Next time the visitor arrives at your page, the password is retrieved from the cookie
  • 47. Date cookie - The first time a visitor arrives to your web page, the current date is stored in a cookie. Next time the visitor arrives at your page, he or she could get a message like "Your last visit was on Tuesday August 11, 2005!" The date is retrieved from the stored cookie Create and Store a CookieIn this example we will create a cookie that stores the name of a visitor. The first time a visitor arrives to the web page, he or she will be asked to  fill in her/his name. The name is then stored in a cookie. The next time the visitor arrives at the same page, he or she will get welcome message.First, we create a function that stores the name of the visitor in a cookie VARIABLESThe parameters of the function above hold the name of the cookie, the value of the cookie, and the number of days until the cookie expires.In the function above we first convert the number of days to a valid date, then we add the number of days until the cookie should expire. After that we store the cookie name, cookie value and the expiration date in the document.cookie object.
  • 48. JavaScript Form ValidationJavaScript can be used to validate data in HTML forms before sending off the content to a server.Javascript perform the following checks typically: whether required fields are left empty
  • 49. whether E-mail id entered by user is valid or not
  • 50. whether Date entered is valid or not
  • 51. whether user has entered text in numerical formatExample:<html><head><script type="text/javascript">function validate_required(field,alerttxt){with (field)  {  if (value==null||value=="")    {    alert(alerttxt);return false;    }  else    {    return true;    }  }}function validate_form(thisform){
  • 52. with (thisform)  {  if (validate_required(email,"Email must be filled out!")==false)  {email.focus();return false;}  }}</script></head><body><form action="submit.htm" onsubmit="return validate_form(this)" method="post">Email: <input type="text" name="email" size="30"><input type="submit" value="Submit"></form></body></html>
  • 53. JavaScript ObjectsCreating Your Own ObjectsThere are different ways to create a new object:1. Create a direct instance of an objectThe following code creates an instance of an object and adds four properties to it:personObj=new Object();personObj.firstname="John";personObj.lastname="Doe";personObj.age=50;personObj.eyecolor="blue";2. Create a template of an objectThe template defines the structure of an object:function person(firstname,lastname,age,eyecolor){this.firstname=firstname;this.lastname=lastname;this.age=age;this.eyecolor=eyecolor;}With the help of template ,we can create new instances of object like this:
  • 56. validating data on the client
  • 57. create more sophisticated user interfaces.
  • 58. JavaScript effects are also much faster to download than some other front-end technologies like Flash and Java appletsNo need of extra tools to write JavaScript, any plain text or HTML editor will do it. It's also an easy language to learn.
  • 59. It allow Developer to add Dynamic content like image swapping ,Rollover, which is not available in HTML or CSS.CSS basically used for styling ur pages
  • 60. JavaScript used to allow script access to objects embedded in otherapplication.
  • 61. Drawbacks:Browser Compatibility
  • 62. Problems due to use of different javascript