Lecture 18
In this lecture, we will learn
-> Validating Radio Button

Validating Radio Button Selections
       A radio button, provide a set of options, out of which only one can be
selected. Infact, there are lot of simillarities between radio button and check box.
Except one dissimillarity, which is, check box provide a lot of options to be
selected whereas you can only select one option with radio button.

To know which option is selected, the following statement can be used

document.name of the form.name of the button[i].checked,

The above statement returns true if the button is selected otherwise false. The
value of 'i' ranges from (0 to number_of_radio_buttons - 1 ).

Let us take an example.

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
function validate()
{
       number_of_radio_buttons=document.myForm.hobby.length;
       for (i=0;i<=number_of_radio_buttons-1;i++)
       {
       if (document.myForm.hobby[i].checked)
       {
                flag=1;
                you_selected=document.myForm.hobby[i].value;
                window.alert(you_selected);
                return true;
       }
       else
                flag=0;
       }
       if (flag==0)
       {
                window.alert("Error! You should select one of the options");
                return false;
       }
}
</script>
</HEAD>

<BODY>
My hobbies are
     <form method="get" action="display.asp" name="myForm"
onSubmit="return validate()">
     <input type="radio" name="hobby" value="soccer"> Soccer <br>
     <input type="radio" name="hobby" value="read"> Reading <br>
     <input type="radio" name="hobby" value="music"> Listening Music <br>
     <input type="radio" name="hobby" value="travel"> Travelling <br>

     <input type="submit" value="Validate">
     </form>
</BODY>
</HTML>

Let us summarize, what we have learned by the above program
1. To know the number of radio buttons:        document.name of form.name of
radio button.length
2. To know index of radio button selected:          document.name of
form.name of radio button[i].selected
3. To know the value of radio button selected: document.name of form.name of
radio button[i].value

Using the Window Object
       We will discuss more about the Window object. We have been already
using the Window object before.

Some of the features of Window object are
1.   Creating Alert Dialog Boxes:             window.alert()
2.   Creating Confirmation Dialog Boxes:      window.confirm()
3.   Creating Dialog Boxes to get:            window.prompt()
     information from the user.
4.   Opening Pages in new window:             window.open()
5.   Determining window size
6.   Controlling scrolling of the document displayed in window
7.   Scheduling the execution of function:    window.setTimeout()

So, we have done all this before. This is all we have to learn about window
object.
Open a Full Screen window
The following is the code to open a full screen window

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function showWindow()
       {
              window.open("","myNewWindow","fullScreen=yes");
       }
</script>
</HEAD>
<BODY>
       <a href="a.html" onMouseOver="showWindow()" >Click1</a>
</BODY>
</HTML>

Handling the Parent-Child
Relationship of Windows
         When the window.open() method is used to open a new window from
JavaScript, a relationship exist between the original window and new window so
that it is possible to refer to both the windows from within JavaScript.

Well, to refer to the child window, simply do this

var newWindow=window.open(“URL”,window name);

Now you can refer to the new window, by newWindow.

Let us take an example

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function showWindow()
       {
              myNewWindow=window.open("","myNewWindow");

       }

       function closeWindow()
{
            myNewWindow.close();
      }

       function closeThisWindow()
       {
              window.close();
       }
</script>
</HEAD>
<BODY>
       <a href="" onMouseOver="showWindow()" >Take the Mouse here to open
a New window</a> <br>
       <a href="" onMouseOver='closeWindow()' >Take the Mouse here to close
the Opened Window</a><br>
       <a href="" onMouseOver="closeThisWindow()">Take the Mouse here to
close this Window</a>
</BODY>
</HTML>

Let us take another example, where you will open a new window. The new
window have the option for closing the parent window.

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function showWindow()
       {
              myNewWindow=window.open("a.html","myNewWindow");

      }

      function closeWindow()
      {
             myNewWindow.close();
      }

       function closeThisWindow()
       {
              window.close();
       }
</script>
</HEAD>
<BODY>
       <a href="" onMouseOver="showWindow()" >Take the Mouse here to open
a New window</a> <br>

</BODY>
</HTML>

Here is the code for a.html

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function closeOriginalWindow()
       {
              window.opener.close();
       }
</script>
</HEAD>

<BODY>
     <a href="" onMouseOver="closeOriginalWindow()">close the original
Window</a>
</BODY>
</HTML>

Writing into New Window

Below is the code, to write into new Window

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function showWindow()
       {
              myNewWindow=window.open("","myNewWindow","width=200,
height=200, left=20, top=50");
              myNewWindow.document.open();
              myNewWindow.document.write("Take your mouse here to open
new window");
              myNewWindow.document.close();

      }

      function closeWindow()
      {
             myNewWindow.close();
}

       function closeThisWindow()
       {
              window.close();
       }
</script>
</HEAD>
<BODY>
       <a href="" onMouseOver="showWindow()" >Take the Mouse here to open
a New window</a> <br>

</BODY>
</HTML>

Referring Frames In JavaScript
If there are two frames on one page, name of left frame is frame1, and name of
right frame is frame2,
Then frame1 can be referred in JavaScript as parent.frame1 and similarly,
frame2 can be referred as paraent.frame2.

Let us take an example, first make frameset.html, which contains two frames,
frame1 and frame2.

<frameset cols=”50%,50%”>
      <frame name=”frame1” src=”frame1.html”>
      <frame name=”frame2” src=”frame2.html”>
</framesest>

Here is the code for frame1.html

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function writeFrame2()
       {
              parent.frame2.document.open();

       parent.frame2.document.write(document.forms[0].f1text.value);
              parent.frame2.document.close();
       }
</script>
</HEAD>
<BODY>
<form>
<input type="text" name="f1text">
<input type="button" value="Write this to Frame 2" onClick="writeFrame2()">
<form>
</BODY>
</HTML>

To understand more about Frame object, Let me compare Frame object with
Window object. In the previous topic, we saw that, window can use the document
object, for ex. window.document.open(), Simmilarly, we can say
frame.document.open(), and then can write into the frame, as you can see in the
abov example. Infact we can use all the functions provided by the document
object.
So, the moral of the story is "Frame object contain a document object".

Let us take another simple example

This is the code for frameset.html

<frameset cols=”50%,50%”>
      <frame name=”frame1” src=”frame1.html”>
      <frame name=”frame2” src=””>
</framesest>

Notice that, source for frame2 doesnot exist

Below is the code for frame1.html

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language="JavaScript">
       function writeFrame2()
       {
              parent.frame2.document.location=document.forms[0].f1text.value;
       }
</script>
</HEAD>
<BODY>
<form>
Give the name of HTML file to open in Frame2
<input type="text" name="f1text">
<input type="button" value="Open File in Frame 2" onClick="writeFrame2()">
<form>
</BODY>
</HTML>
If Frames have no name, they can still be referred, like we referred forms. You
guessed it right, first frame is frames[0], second frame is frames[1], and so on.
So we can refer to first frame as parent.frames[0].

Using Frames to Store
Pseudo-Persistent Data
       When you are working with frames, it is sometimes useful to be able to
store information in JavaScript variables in such a way that the variable is
available to both the frames.
<frameset cols=”50%,50%”>
       <frame name=”frame1” src=”frame1.html”>
       <frame name=”frame2” src=””>
</framesest>

In the above code, there are three documents.
1. Frame set document.
2. document present in frame1.
3. document present in frame2.

Actually frameset document, contains within itself two more documents,
(document of frame1) and (document in frame2 ).

If you create any variable in document of frame1, it will not be accessible to
document of frame 2. Simmilarly, if you create a variable in document of frame 2,
it will not be accessible to document of frame1. So, you can create a variable in
frameset document, which will be accessible to both frame 1 and frame 2.

So, now create a variable in frameset.html,
Below is the code for frameset.html

<script language="JavaScript">
       var pVariable="This is a persistent value"
</script>
<frameset cols=”50%,50%”>
       <frame name=”frame1” src=”frame1.html”>
       <frame name=”frame2” src=”frame2.html”>
</framesest>

Below is the code for frame1.html

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
This is frame 1 <br>
<script language="JavaScript">
document.write("The value of persistent variable is "+parent.pVariable);
</script>
</BODY>
</HTML>

Below is the code for frame2.html
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
This is frame 2 <br>
<script language="JavaScript">
document.write("The value of persistent variable is "+parent.pVariable);
</script>
</BODY>
</HTML>

More Related Content

PPTX
Javascript 2
PDF
Practica n° 7
DOC
Java script frame history
 
PDF
Web 5 | JavaScript Events
PDF
Sistema de ventas
RTF
Html basics 11 form validation
 
PDF
The Ring programming language version 1.10 book - Part 53 of 212
PDF
Documentation For Tab Setup
Javascript 2
Practica n° 7
Java script frame history
 
Web 5 | JavaScript Events
Sistema de ventas
Html basics 11 form validation
 
The Ring programming language version 1.10 book - Part 53 of 212
Documentation For Tab Setup

What's hot (14)

PDF
Visual Studio.Net - Sql Server
PDF
Aspnet mvc tutorial_9_cs
PDF
Ajax chap 5
PDF
Ajax chap 4
PDF
Java script programms
PDF
Aplikasi rawat-inap-vbnet
PDF
Ajax chap 3
PDF
Ajax chap 2.-part 1
PDF
phptut2
PDF
Android Testing
PDF
The Ring programming language version 1.5.3 book - Part 43 of 184
PPT
05 html-forms
PPTX
Advance JFACE
DOC
14922 java script built (1)
Visual Studio.Net - Sql Server
Aspnet mvc tutorial_9_cs
Ajax chap 5
Ajax chap 4
Java script programms
Aplikasi rawat-inap-vbnet
Ajax chap 3
Ajax chap 2.-part 1
phptut2
Android Testing
The Ring programming language version 1.5.3 book - Part 43 of 184
05 html-forms
Advance JFACE
14922 java script built (1)
Ad

Viewers also liked (16)

DOC
Lecture1 introductiontonetwork
 
PDF
Java script objects 2
 
PDF
Assignment4
 
PPT
Week5
 
DOC
Lecture4 isoosi
 
PDF
Set
 
DOC
Lecture2 networkclassification
 
PDF
Assignment sw
 
DOC
Html basics 6 image
 
PDF
Solution2
 
DOC
Html basics 3 font align
 
DOC
Html basics 10 form
 
PDF
Induction
 
DOC
Html basics 1
 
DOC
Html basics 7 table
 
PPT
Week7
 
Lecture1 introductiontonetwork
 
Java script objects 2
 
Assignment4
 
Week5
 
Lecture4 isoosi
 
Set
 
Lecture2 networkclassification
 
Assignment sw
 
Html basics 6 image
 
Solution2
 
Html basics 3 font align
 
Html basics 10 form
 
Induction
 
Html basics 1
 
Html basics 7 table
 
Week7
 
Ad

Similar to Java script frame window (20)

PPTX
Internet Based Programming -3-JAVASCRIPT
PPTX
wp-UNIT_III.pptx
PPT
13488117.ppt
PPT
13488117.ppt
PDF
lect4
PDF
lect4
PPTX
Java script Advance
PPTX
JavaScript lesson 1.pptx
PDF
Java script browser objects 1
 
PPTX
FYBSC IT Web Programming Unit III Javascript
PPTX
Javascript
PPTX
Unit5_Web_Updvvgxsvjbffcvvgbjifszated.pptx
DOC
Java script advanced frame
 
PPTX
Introduction to java script, how to include java in HTML
PDF
The Ring programming language version 1.5.3 book - Part 81 of 184
PPTX
PPT
eXo SEA - JavaScript Introduction Training
PPT
Javascript1
PDF
PDF
Devoxx 2014-webComponents
Internet Based Programming -3-JAVASCRIPT
wp-UNIT_III.pptx
13488117.ppt
13488117.ppt
lect4
lect4
Java script Advance
JavaScript lesson 1.pptx
Java script browser objects 1
 
FYBSC IT Web Programming Unit III Javascript
Javascript
Unit5_Web_Updvvgxsvjbffcvvgbjifszated.pptx
Java script advanced frame
 
Introduction to java script, how to include java in HTML
The Ring programming language version 1.5.3 book - Part 81 of 184
eXo SEA - JavaScript Introduction Training
Javascript1
Devoxx 2014-webComponents

More from H K (20)

PDF
Assignment4
 
DOCX
Assignment3
 
PDF
Solution3
 
DOCX
Mid-
 
PDF
Assignment4
 
PDF
Dm assignment3
 
PPT
Proof
 
PDF
Resolution
 
DOCX
Assignment description
 
PDF
Dm assignment2
 
PDF
Dm assignment1
 
PPTX
Logic
 
DOCX
Introduction
 
PDF
Assignment 2 sol
 
PDF
Assignment sw solution
 
PDF
Violinphoenix
 
PDF
Ie project
 
PDF
Assignment cn subnetting
 
PDF
Assignment uplaodfile
 
PDF
Assignment sw
 
Assignment4
 
Assignment3
 
Solution3
 
Mid-
 
Assignment4
 
Dm assignment3
 
Proof
 
Resolution
 
Assignment description
 
Dm assignment2
 
Dm assignment1
 
Logic
 
Introduction
 
Assignment 2 sol
 
Assignment sw solution
 
Violinphoenix
 
Ie project
 
Assignment cn subnetting
 
Assignment uplaodfile
 
Assignment sw
 

Recently uploaded (20)

PPTX
Climate Change and Its Global Impact.pptx
PDF
My India Quiz Book_20210205121199924.pdf
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
HVAC Specification 2024 according to central public works department
PDF
Empowerment Technology for Senior High School Guide
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PDF
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
PPTX
RIZALS-LIFE-HIGHER-EDUCATION-AND-LIFE-ABROAD.pptx
PPTX
Module on health assessment of CHN. pptx
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PDF
Race Reva University – Shaping Future Leaders in Artificial Intelligence
PDF
English Textual Question & Ans (12th Class).pdf
PPTX
Education and Perspectives of Education.pptx
PDF
fundamentals-of-heat-and-mass-transfer-6th-edition_incropera.pdf
PDF
1.Salivary gland disease.pdf 3.Bleeding and Clotting Disorders.pdf important
PPTX
MICROPARA INTRODUCTION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
PPTX
INSTRUMENT AND INSTRUMENTATION PRESENTATION
PDF
Journal of Dental Science - UDMY (2022).pdf
PDF
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
Climate Change and Its Global Impact.pptx
My India Quiz Book_20210205121199924.pdf
Cambridge-Practice-Tests-for-IELTS-12.docx
HVAC Specification 2024 according to central public works department
Empowerment Technology for Senior High School Guide
Environmental Education MCQ BD2EE - Share Source.pdf
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
RIZALS-LIFE-HIGHER-EDUCATION-AND-LIFE-ABROAD.pptx
Module on health assessment of CHN. pptx
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
Race Reva University – Shaping Future Leaders in Artificial Intelligence
English Textual Question & Ans (12th Class).pdf
Education and Perspectives of Education.pptx
fundamentals-of-heat-and-mass-transfer-6th-edition_incropera.pdf
1.Salivary gland disease.pdf 3.Bleeding and Clotting Disorders.pdf important
MICROPARA INTRODUCTION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
INSTRUMENT AND INSTRUMENTATION PRESENTATION
Journal of Dental Science - UDMY (2022).pdf
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf

Java script frame window

  • 1. Lecture 18 In this lecture, we will learn -> Validating Radio Button Validating Radio Button Selections A radio button, provide a set of options, out of which only one can be selected. Infact, there are lot of simillarities between radio button and check box. Except one dissimillarity, which is, check box provide a lot of options to be selected whereas you can only select one option with radio button. To know which option is selected, the following statement can be used document.name of the form.name of the button[i].checked, The above statement returns true if the button is selected otherwise false. The value of 'i' ranges from (0 to number_of_radio_buttons - 1 ). Let us take an example. <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function validate() { number_of_radio_buttons=document.myForm.hobby.length; for (i=0;i<=number_of_radio_buttons-1;i++) { if (document.myForm.hobby[i].checked) { flag=1; you_selected=document.myForm.hobby[i].value; window.alert(you_selected); return true; } else flag=0; } if (flag==0) { window.alert("Error! You should select one of the options"); return false; } } </script>
  • 2. </HEAD> <BODY> My hobbies are <form method="get" action="display.asp" name="myForm" onSubmit="return validate()"> <input type="radio" name="hobby" value="soccer"> Soccer <br> <input type="radio" name="hobby" value="read"> Reading <br> <input type="radio" name="hobby" value="music"> Listening Music <br> <input type="radio" name="hobby" value="travel"> Travelling <br> <input type="submit" value="Validate"> </form> </BODY> </HTML> Let us summarize, what we have learned by the above program 1. To know the number of radio buttons: document.name of form.name of radio button.length 2. To know index of radio button selected: document.name of form.name of radio button[i].selected 3. To know the value of radio button selected: document.name of form.name of radio button[i].value Using the Window Object We will discuss more about the Window object. We have been already using the Window object before. Some of the features of Window object are 1. Creating Alert Dialog Boxes: window.alert() 2. Creating Confirmation Dialog Boxes: window.confirm() 3. Creating Dialog Boxes to get: window.prompt() information from the user. 4. Opening Pages in new window: window.open() 5. Determining window size 6. Controlling scrolling of the document displayed in window 7. Scheduling the execution of function: window.setTimeout() So, we have done all this before. This is all we have to learn about window object.
  • 3. Open a Full Screen window The following is the code to open a full screen window <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function showWindow() { window.open("","myNewWindow","fullScreen=yes"); } </script> </HEAD> <BODY> <a href="a.html" onMouseOver="showWindow()" >Click1</a> </BODY> </HTML> Handling the Parent-Child Relationship of Windows When the window.open() method is used to open a new window from JavaScript, a relationship exist between the original window and new window so that it is possible to refer to both the windows from within JavaScript. Well, to refer to the child window, simply do this var newWindow=window.open(“URL”,window name); Now you can refer to the new window, by newWindow. Let us take an example <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function showWindow() { myNewWindow=window.open("","myNewWindow"); } function closeWindow()
  • 4. { myNewWindow.close(); } function closeThisWindow() { window.close(); } </script> </HEAD> <BODY> <a href="" onMouseOver="showWindow()" >Take the Mouse here to open a New window</a> <br> <a href="" onMouseOver='closeWindow()' >Take the Mouse here to close the Opened Window</a><br> <a href="" onMouseOver="closeThisWindow()">Take the Mouse here to close this Window</a> </BODY> </HTML> Let us take another example, where you will open a new window. The new window have the option for closing the parent window. <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function showWindow() { myNewWindow=window.open("a.html","myNewWindow"); } function closeWindow() { myNewWindow.close(); } function closeThisWindow() { window.close(); } </script> </HEAD> <BODY> <a href="" onMouseOver="showWindow()" >Take the Mouse here to open
  • 5. a New window</a> <br> </BODY> </HTML> Here is the code for a.html <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function closeOriginalWindow() { window.opener.close(); } </script> </HEAD> <BODY> <a href="" onMouseOver="closeOriginalWindow()">close the original Window</a> </BODY> </HTML> Writing into New Window Below is the code, to write into new Window <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function showWindow() { myNewWindow=window.open("","myNewWindow","width=200, height=200, left=20, top=50"); myNewWindow.document.open(); myNewWindow.document.write("Take your mouse here to open new window"); myNewWindow.document.close(); } function closeWindow() { myNewWindow.close();
  • 6. } function closeThisWindow() { window.close(); } </script> </HEAD> <BODY> <a href="" onMouseOver="showWindow()" >Take the Mouse here to open a New window</a> <br> </BODY> </HTML> Referring Frames In JavaScript If there are two frames on one page, name of left frame is frame1, and name of right frame is frame2, Then frame1 can be referred in JavaScript as parent.frame1 and similarly, frame2 can be referred as paraent.frame2. Let us take an example, first make frameset.html, which contains two frames, frame1 and frame2. <frameset cols=”50%,50%”> <frame name=”frame1” src=”frame1.html”> <frame name=”frame2” src=”frame2.html”> </framesest> Here is the code for frame1.html <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function writeFrame2() { parent.frame2.document.open(); parent.frame2.document.write(document.forms[0].f1text.value); parent.frame2.document.close(); } </script> </HEAD> <BODY>
  • 7. <form> <input type="text" name="f1text"> <input type="button" value="Write this to Frame 2" onClick="writeFrame2()"> <form> </BODY> </HTML> To understand more about Frame object, Let me compare Frame object with Window object. In the previous topic, we saw that, window can use the document object, for ex. window.document.open(), Simmilarly, we can say frame.document.open(), and then can write into the frame, as you can see in the abov example. Infact we can use all the functions provided by the document object. So, the moral of the story is "Frame object contain a document object". Let us take another simple example This is the code for frameset.html <frameset cols=”50%,50%”> <frame name=”frame1” src=”frame1.html”> <frame name=”frame2” src=””> </framesest> Notice that, source for frame2 doesnot exist Below is the code for frame1.html <HTML> <HEAD> <TITLE> New Document </TITLE> <script language="JavaScript"> function writeFrame2() { parent.frame2.document.location=document.forms[0].f1text.value; } </script> </HEAD> <BODY> <form> Give the name of HTML file to open in Frame2 <input type="text" name="f1text"> <input type="button" value="Open File in Frame 2" onClick="writeFrame2()"> <form> </BODY> </HTML>
  • 8. If Frames have no name, they can still be referred, like we referred forms. You guessed it right, first frame is frames[0], second frame is frames[1], and so on. So we can refer to first frame as parent.frames[0]. Using Frames to Store Pseudo-Persistent Data When you are working with frames, it is sometimes useful to be able to store information in JavaScript variables in such a way that the variable is available to both the frames. <frameset cols=”50%,50%”> <frame name=”frame1” src=”frame1.html”> <frame name=”frame2” src=””> </framesest> In the above code, there are three documents. 1. Frame set document. 2. document present in frame1. 3. document present in frame2. Actually frameset document, contains within itself two more documents, (document of frame1) and (document in frame2 ). If you create any variable in document of frame1, it will not be accessible to document of frame 2. Simmilarly, if you create a variable in document of frame 2, it will not be accessible to document of frame1. So, you can create a variable in frameset document, which will be accessible to both frame 1 and frame 2. So, now create a variable in frameset.html, Below is the code for frameset.html <script language="JavaScript"> var pVariable="This is a persistent value" </script> <frameset cols=”50%,50%”> <frame name=”frame1” src=”frame1.html”> <frame name=”frame2” src=”frame2.html”> </framesest> Below is the code for frame1.html <HTML> <HEAD> <TITLE> New Document </TITLE> </HEAD>
  • 9. <BODY> This is frame 1 <br> <script language="JavaScript"> document.write("The value of persistent variable is "+parent.pVariable); </script> </BODY> </HTML> Below is the code for frame2.html <HTML> <HEAD> <TITLE> New Document </TITLE> </HEAD> <BODY> This is frame 2 <br> <script language="JavaScript"> document.write("The value of persistent variable is "+parent.pVariable); </script> </BODY> </HTML>