Java Script Features
Java Script Features
from Sun Microsystems). Javascript was created by Brendan Eich at Netscape in 1995 for the
purpose of allowing code in webpages. Netscape first introduced a JavaScript interpreter in
Navigator 2. The interpreter was an extra software component in the browser that was
capable of interpreting JavaSript source code inside an HTML document. This meant that
Web page authors using no more than a simple text editor could place special instructions
or programs directly inside Web pages to make them more dynamic and interactive.
JavaScript can be used to:
validate user input in an HTML form before sending the data to a server
build forms that respond to user input without accessing a server
change the appearance of HTML documents and dynamically write HTML into
separate Windows
open and close new windows or frames
manipulate HTML "layers" including hiding, moving, and allowing the user to drag
them around a browser window
build small but complete client side programs
X = 10;
You can also declare a variable and then use it and for this use the keyword var as follows
Var x = 10;
Or
Var x;
X=10;
Prompt() : Prompt function of java script is used to prompt for a value from the user.
Confirm() : confirm function of java script is used to get confirmation from user before
executing some task.
Example : The following example gives an alert message to the user when user click on
the button using inline java script.
<!doctype html>
<html>
<form>
</form>
</html>
<script type=text/javascript>
</script>
Within the <head> section java script will be written in the form of functions. To create a
function in java script use the keyword function and it has the following syntax.
statement1
statement2
statementn
The keyword function precedes the name of the function. A function name is like a variable
name in that it must start with a character and must not be the same as a JavaScript key
word. The parameter list is a comma separated list of variable names inside round brackets
immediately following the function name. The statements to be executed when the function
is called are contained inside the function body and are contained within curly braces.
Here is a function that finds the maximum value of two numbers. Note that the function
determines which number is largest and returns the largest value using the return
statement. The value returned will take the place of the function in the calling expression -
see the example below.
else
return n1
Example : The following example displays an alert message after prompting name of the
user when user click on the button using internal java script.
<!doctype html>
<html>
<head>
<script>
Function getname()
</script>
</head>
<form>
</form>
</html>
Create a file with name functions.js and write the following java script functions in it.
function sum(x,y)
function sub(x,y)
function mul(x,y)
function div(x,y)
<!doctype html>
<html>
<head>
<script src="d:\functions.js">
</script>
</head>
<body>
<form>
<table>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
</table>
</form>
</body>
</html>
If
If(<condition>) if(<condition>)
<stmts> <stmts>
<stmts> <stmts>
Else if(<condition>)
<stmts>
Else
<stmts>
Switch
Switch(<expression>)
Case <result1> :
<stmts>
Break;
Case <result2>:
<stmts>
Break;
..
Default :
<stmts>
Ternary Operator (? :)
<var> = (<condition>)?<stmt1>:<stmt2>;
While
<var initialization>
While(<condition>)
<stmts>
For
For(initialization;condition;incr/decr)
<stmts>
Do while
<variable initialization>
Do
<stmts>
mynumbers[0] = 34
mynumbers[1] = 22
mynumbers[2] = 9
mynumbers[3] = 12
mynumbers[4] = 0
sum = 0;
alert(sum)
The new array object had the advantage that you could create the array and add values at
the same time:
This made it possible to do in one line what it took six lines to do in the previous example.
The one problem with this was that mnumbers = new Array(2, 1) creates an array with two
values in it but mynumbers = new Array(2) creates an array with two empty slots. Logically,
it should create one slot with the number 2 in it.
Example : The following example demonstrates how to work with one dimensional arrays
<html>
<head>
<script type="text/javascript">
for(i=0;i<5;i++)
A[i]=eval(prompt("Enter An Integer"));
for(i=0;i<5;i++)
</script>
</head>
<body>
</body>
</html>
{
x[i] = new Array(20);
x[5][12] = 3.0;
Example : The following example demonstrates how to use two dimensional arrays.
<html>
<head>
<script type="text/javascript">
for(i=0;i<3;i++)
for(j=0;j<3;j++)
A[i][j]=eval(prompt("Enter An Integer"));
for(i=0;i<3;i++)
for(j=0;j<3;j++)
" </font>");
}
document.write("<br/>");
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Concat() Method. This
method concats the elements of one array at the end of another array and returns an array.
<html>
<head>
<script type="text/javascript">
var C=B.concat(A);
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Sort() and Reverse()
Methods. Sort() methods sorts the elements in array and reverse() methods reverses the
elements.
<html>
<head>
<script type="text/javascript">
function compare(a,b)
return a-b;
var B=A.sort(compare);
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Slice() Method. Slice
method will extract specified number of elements starting from specified index without
deleting them from array.
<html>
<head>
<script type="text/javascript">
var B=A.slice(1,4);
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Splice() Method. Splice
method will extract specified number of elements starting from specified index and deletes
them from array.
<html>
<head>
<script type="text/javascript">
var B=A.splice(1,4);
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Splice() Method. Splice
method can extract specified number of elements starting from specified index and replace
them with other elements.
<html>
<head>
<script type="text/javascript">
var B=A.splice(1,4,1,2,3,4);
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Push() and Pop()
Methods. Push method pushes element at the top and pop elements pops the top element.
<html>
<head>
<script type="text/javascript">
var p=A.pop();
var p=A.pop();
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to use Array Sort() method for
sorting strings.
<html>
<head>
<script type="text/javascript">
function compare(a,b)
{return a.localeCompare(b);
</script>
</head>
<body>
</body>
</html>
Validations
One main purpose of java script is performing validations. The following examples
demonstrates how to perform various validations in java script.
Example : The following example demonstrates how to restrict a text box to accept only
digits.
<html>
<head>
<script type="text/javascript">
function fn_validateNumeric(thi,dec)
{
/* verifying the character pressed is a digit */
(event.keyCode != 46))
event.returnValue = false;
event.returnValue = false;
else
event.returnValue = false;
/* Ascii values of 0-9 are 48 to 57 and ascii value of "." is 46. "This" refers to the
control that causes the event. else condition is to restrict "." more than once */
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to restrict a text box to accept only
alphabets.
<html>
<head>
<script type="text/javascript">
function fn_validateAlpha(thi)
event.returnValue = false;
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to automatically convert the letters
typed in a text box to uppercase.
<html>
<head>
<script type="text/javascript">
function Convert_Capital(thi)
event.keyCode=event.keyCode-32;
</script>
</head>
<body>
</body>
</html>
Example : The following example demonstrates how to perform various validations like
textbox is not blank , password is minimum 8 characters, password and confirm password
are same and email id is in correct format.
<html>
<head>
<script type="text/javascript">
function emailcheck()
var str=f1.txtemail.value;
var at="@";
var dot=".";
var atpos=str.indexOf(at);
var len=str.length;
var dotpos=str.indexOf(dot);
if (atpos==-1 || atpos==0 || atpos==len)
return false;
return false;
if (str.indexOf(at,(atpos+1))!=-1)
return false;
if (str.substring(atpos-1,atpos)==dot || str.substring(atpos+1,atpos+2)==dot)
return false;
if (str.indexOf(dot,(atpos+2))==-1)
{
alert("Invalid E-mail ID");
return false;
if (str.indexOf(" ")!=-1)
return false;
return true;
function isvalid()
if(f1.txtuname.value=="")
f1.txtuname.focus();
return false;
if(f1.txtpwd1.value=="" || f1.txtpwd2.value=="")
f1.txtpwd1.focus();
return false;
if(f1.txtpwd1.value.length<8)
{
alert("Password Must Be Minimum 8 characters");
f1.txtpwd1.value="";
f1.txtpwd2.value="";
f1.txtpwd1.focus();
return false;
if(f1.txtpwd1.value!=f1.txtpwd2.value)
f1.txtpwd1.value="";
f1.txtpwd2.value="";
f1.txtpwd1.focus();
return false;
if(f1.txtemail.value=="")
f1.txtemail.focus();
return false;
if(emailcheck()==false)
f1.txtemail.value="";
f1.txtemail.focus();
return false;
}
return true;
</script>
</head>
<body>
<form id="f1">
<table>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</table>
</form>
</body>
</html>
Cookies
Web Browser and Server use HTTP protocol to communicate and HTTP is a stateless
protocol. But for a commercial website it is required to maintain session information among
different pages. For example one user registration ends after completing many pages. But
how to maintain user's session information across all the web pages. In many situations,
using cookies is the most efficient method of remembering and tracking preferences,
purchases, commissions, and other information required for better visitor experience or site
statistics.
Your server sends some data to the visitor's browser in the form of a cookie. The browser
may accept the cookie. If it does, it is stored as a plain text record on the visitor's hard drive.
Now, when the visitor arrives at another page on your site, the browser sends the same
cookie to the server for retrieval. Once retrieved, your server knows/remembers what was
stored earlier.
Expires : The date the cookie will expire. If this is blank, the cookie will expire when the
visitor quits the browser.
Path : The path to the directory or web page that set the cookie. This may be blank if you
want to retrieve the cookie from any directory or page.
Secure : If this field contains the word "secure" then the cookie may only be retrieved with a
secure server. If this field is blank, no such restriction exists.
Name=Value : Cookies are set and retrieved in the form of key and value pairs.
Cookies were originally designed for CGI programming and cookies' data is automatically
transmitted between the web browser and web server, so CGI scripts on the server can read
and write cookie values that are stored on the client. JavaScript can also manipulate cookies
using the cookie property of the Document object. JavaScript can read, create, modify, and
delete the cookie or cookies that apply to the current web page.
Storing Cookies
The simplest way to create a cookie is to assign a string value to the document.cookie
object, which looks like this:
Syntax:
document.cookie = "key1=value1;key2=value2;expires=date";
Here expires attribute is option. If you provide this attribute with a valid date or time then
cookie will expire at the given date or time and after that cookies' value will not be
accessible.
Note: Cookie values may not include semicolons, commas, or whitespace. For this reason,
you may want to use the JavaScript escape() function to encode the value before storing it
in the cookie. If you do this, you will also have to use the corresponding unescape() function
when you read the cookie value.
Example : The following example demonstrates how to work with cookies for storing user
id and password in cookies in a login form.
<!doctype html>
<html>
<head>
<script>
function loginclick()
var c=document.getElementsByName("chkremember")[0];
if(c.checked)
setCookie("uid1",f1.txtuid.value,7);
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
if (x==c_name)
return unescape(y);
function setCookie(c_name,value,exdays)
exdate.setDate(exdate.getDate() + exdays);
function checkCookie()
var username=getCookie("uid1");
alert(username);
return username;
}
</script>
</head>
<body onload="f1.txtuid.value=checkCookie()">
<form id="f1">
<table>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>
</form>
</body>
</html>
DOM (Document Object Model) Window Object
The window object represents an open window in a browser. If a document contain frames
(<frame> or <iframe> tags), the browser creates one window object for the HTML
document, and one additional window object for each frame.
Property Description
closed Returns a Boolean value indicating whether a window has been closed or not
document Returns the Document object for the window (See Document object)
frames Returns an array of all the frames (including iframes) in the current window
history Returns the History object for the window (See History object)
location Returns the Location object for the window (See Location object)
navigator Returns the Navigator object for the window (See Navigator object)
pageXOffset Returns the pixels the current document has been scrolled (horizontally) from
the upper left corner of the window
pageYOffset Returns the pixels the current document has been scrolled (vertically) from the
upper left corner of the window
screen Returns the Screen object for the window (See Screen object)
Method Description
confirm() Displays a dialog box with a message and an OK and a Cancel button
prompt() Displays a dialog box that prompts the visitor for input
Each HTML document loaded into a browser window becomes a Document object. The
Document object provides access to all HTML elements in a page, from within a script. The
Document object is also part of the Window object, and can be accessed through the
window.document property.
Property Description
anchors Returns a collection of all the anchors in the document
documentMode Returns the mode used by the browser to render the document
domain Returns the domain name of the server that loaded the document
lastModified Returns the date and time the document was last modified
referrer Returns the URL of the document that loaded the current
document
Method Description
close() Closes the output stream previously opened with
document.open()
Property Description
appCodeName Returns the code name of the browser
userAgent Returns the user-agent header sent by the browser to the server
The history object contains the URLs visited by the user (within a browser window). The
history object is part of the window object and is accessed through the window.history
property.
Property Description
Method Description
Example : The following example demonstrates how to use open() method of window
object and opener property of window object and document objects bgcolor property. First
open parent.html in browser that will automatically open child.html in a new window or tab
and then click on buttons in child.html to change background color of parent.html.
Parent.Html
<html>
<head>
<script type="text/javascript">
var ch=window.open("child.html","win1","width=300,height=300");
ch.document.bgColor="purple";
</script>
</head>
</html>
Child.Html
<html>
<head>
<title>Secondary window</title>
</head>
<body >
<center>
<form>
"window.opener.document.bgColor='yellow'" value="yellow">
<input type="button" onClick=
"window.opener.document.bgColor='lightgreen'" value="lightgreen">
"window.opener.document.bgColor='white'" value="white">
</form>
</center>
</body>
</html>
Example : The following example demonstrates various properties of window object that
can be specified using third argument of open method of window object.
<html>
<head>
<script type="text/javascript">
function newwindow()
</script>
</head>
<body onload="newwindow()">
</body>
</html>
<script type="text/javascript">
</script>
</body>
</html>
Example : The following example demonstrates the use setinterval()I and clearinterval()
methods of window object.
<html>
<head>
<script type="text/javascript">
var id,i=0;
function FStart()
id=setInterval("ChangeColor()",1000);
function FStop()
clearInterval(id);
function ChangeColor()
document.bgColor=colors[i];
i++;
if(i==5)
i=0;
</script>
</head>
<body>
</body>
</html>
First.Html
<!doctype html>
<html>
<body>
<a href="history.html">
</body>
</html>
History.Html
<!doctype html>
<html>
<body>
</body>
</html>
Next.html
<!doctype html>
<html>
<body>
<img src="e:\images\Creek.jpg"
width="200" height="200"/>
</body>
</html>
In the above example first run first.html from browser and click on the image that displays
history.html, click on the image in history.html to display next.html and then click on
browser back button to move back to the history.html. now within the history.html click on
go back button to go to the page first.html and click on go next button to go to the page
next.html.