Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
7 views
20 pages
HTML Frames Presentation-1
Uploaded by
Piush Gogi
AI-enhanced title
Copyright:
© All Rights Reserved
Available Formats
Download
as PPTX, PDF, TXT or read online from Scribd
Download now
Download
Download as pptx, pdf, or txt
Save HTML_Frames_Presentation-1 For Later
Download
Save
Save HTML_Frames_Presentation-1 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
7 views
20 pages
HTML Frames Presentation-1
Uploaded by
Piush Gogi
AI-enhanced title
Copyright:
© All Rights Reserved
Available Formats
Download
as PPTX, PDF, TXT or read online from Scribd
Download now
Download
Download as pptx, pdf, or txt
Save HTML_Frames_Presentation-1 For Later
Carousel Previous
Carousel Next
Save
Save HTML_Frames_Presentation-1 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
Download as pptx, pdf, or txt
You are on page 1
/ 20
Search
Fullscreen
Frames in HTML and JavaScript
An overview of HTML Frames, their
usage, and examples of accessing
frame content dynamically
What are Frames?
• - Frames allow division of a webpage into
independent sections, each displaying a
separate document.
• - Defined with <frameset> in HTML; less
common today due to compatibility issues.
• - Replaced mostly by CSS layouts and iframes,
but still useful for specific tasks.
Creating Frames in HTML
• - Use <frameset> to define the layout.
• - Within <frameset>, use <frame> or <iframe>
elements to define each frame.
• - Example:
• <frameset rows='50%, 50%'>
• <frame src='frame1.html'>
• <frame src='frame2.html'>
• </frameset>
HTML Frameset Syntax
• 1. <frameset>: Defines layout for frames.
• - rows attribute: Sets height of each frame row.
• - cols attribute: Sets width of each frame column.
• 2. <frame>: Defines individual frames and their
content source (src attribute).
• - Example:
• <frameset rows='50%, 50%'>
• <frame src='frame1.html'>
• <frame src='frame2.html'>
• </frameset>
Invisible Frame Borders
• - To remove frame borders, use the
frameborder attribute in <frameset>.
• - Set frameborder='0' for invisible borders.
• - Example:
• <frameset rows='50%, 50%' frameborder='0'>
• <frame src='frame1.html'>
• <frame src='frame2.html'>
• </frameset>
Accessing and Changing Frame Content
• - Use JavaScript to access and manipulate other
frame content.
• - Example: Set values in Frame 2 from Frame 1.
• Code:
• <-- Main.html -->
<html>
<head> <title>Main File</title> </head>
<frameset rows="50%, 50%">
<frame src="frame1.html" name="frame1">
<frame src="frame2.html" name="frame2">
</frameset>
</html>
• <-- Frame1.html -->
<html>
<body>
<h2>This Is Frame 1</h2>
<button onclick="display()">Send Data</button>
<script language="javascript" type="text/javascript">
function display()
{
parent.frame2.document.getElementById("tf1").value="";
parent.frame2.document.getElementById("tf2").value="";
parent.frame2.focus();
}
</script>
</body>
</html>
• <-- Frame2.html -->
<html>
<body>
<h2>This Is Frame 2</h2>
Full Name : <input type="text" id="tf1"
value="">
Contact Number : <input type="text" id="tf2"
value="">
</body>
</html>
Calling child window functions and writing
on it.
• - Example:
<-- Main.html -->
<html>
<head>
<title>Main File</title>
</head>
<frameset rows="50%, 50%">
<frame src="frame1.html" name="frame1">
<frame src="frame2.html" name="frame2">
</frameset>
</html>
• <-- Frame1.html -->
<html>
<body>
<h2>This Is Frame 1</h2>
<input type="button" value="Call Function"
onclick="parent.frame2.display()">
</body>
</html>
• <-- Frame2.html -->
<html>
<body>
<h2>This Is Frame 2</h2>
<-- This is the function that will be called by frame 1 -->
<script language="javascript" type="text/javascript">
function display()
{
document.write("This function is called by frame 1");
}
</script>
</body>
</html>
Changing Dynamically Source Of Frame.
• - Example:
<-- Main.html -->
<html>
<head> <title>Main File</title>
</head>
<frameset rows="50%, 50%">
<frame src="frame1.html" name="frame1">
<frame src="frame2.html" name="frame2"> </frameset>
</html>
• <-- Frame1.html -->
<html>
<body> <h2>This Is Frame 1</h2>
<button onclick="changeSource()">Open Login Page
</button>
<script language="javascript" type="text/javascript">
function changeSource() {
parent.frame2.location.href="login.html";
}
</script>
</body>
</html>
• <-- Frame2.html -->
<html>
<body> <h2>This Is Frame 2</h2>
</body>
</html>
• Login.hmtl
<html>
<head> <title>login page</title> </head>
<body> <h2>User Login </h2>
Enter your username: <br>
<input type="text" id="name"> <br><br>
Enter your password: <br>
<input type="password" id="password"> <br><br>
<input type="button" value="Login">
</body>
</html>
Key Points
• - Frames allow for content segmentation but
have limitations.
• - JavaScript enables inter-frame
communication and dynamic changes.
• - Invisible borders and function calls can
enhance user experience.
You might also like
Marco Russo: DAX Optimization Examples
PDF
100% (1)
Marco Russo: DAX Optimization Examples
30 pages
WEB PROGRAMMING Lab Manual
PDF
No ratings yet
WEB PROGRAMMING Lab Manual
16 pages
Ultra HTML Reference
From Everand
Ultra HTML Reference
Mike Abelar
2/5 (1)
Inventory Refers To Idle Goods or Materials That Are Held by An Organization For Use Sometime in The Future
PDF
No ratings yet
Inventory Refers To Idle Goods or Materials That Are Held by An Organization For Use Sometime in The Future
14 pages
Frames - Forms
PDF
No ratings yet
Frames - Forms
82 pages
HTML_Lesson8
PDF
No ratings yet
HTML_Lesson8
19 pages
Assignment 10
PDF
No ratings yet
Assignment 10
4 pages
HTML Frames
PDF
No ratings yet
HTML Frames
16 pages
Regular Expression, Rollover and Frames-1
PDF
No ratings yet
Regular Expression, Rollover and Frames-1
26 pages
HTML Frames
PDF
No ratings yet
HTML Frames
3 pages
Web Programming Lab Manual 26 May
PDF
No ratings yet
Web Programming Lab Manual 26 May
26 pages
03 HTML2
PDF
No ratings yet
03 HTML2
61 pages
CSE1041 - Web - 1 - Revampedweek3
PDF
No ratings yet
CSE1041 - Web - 1 - Revampedweek3
39 pages
Topic 4
PDF
No ratings yet
Topic 4
15 pages
Link and Frameset: Pierre Anthony O. Oreto
PDF
No ratings yet
Link and Frameset: Pierre Anthony O. Oreto
22 pages
Web Programming Lab Manual
PDF
No ratings yet
Web Programming Lab Manual
8 pages
frames&forms
PDF
No ratings yet
frames&forms
43 pages
Assignment 2 1
PDF
No ratings yet
Assignment 2 1
16 pages
Chapter 1 HTML Webpublishing / Notes On Webpublishing and HTML Class 12 IT
PDF
100% (1)
Chapter 1 HTML Webpublishing / Notes On Webpublishing and HTML Class 12 IT
19 pages
2-Frames and Forms (Unit-2)
PDF
No ratings yet
2-Frames and Forms (Unit-2)
43 pages
HTML Module
PDF
No ratings yet
HTML Module
20 pages
Unit2 L6 HTML Frames
PDF
No ratings yet
Unit2 L6 HTML Frames
10 pages
Frames
PDF
No ratings yet
Frames
4 pages
Unit II - Lesson 10 - HTML Frames
PDF
100% (1)
Unit II - Lesson 10 - HTML Frames
19 pages
Frames: Jennifer Ventus
PDF
No ratings yet
Frames: Jennifer Ventus
19 pages
Web Technology HTML, SGML
PDF
No ratings yet
Web Technology HTML, SGML
36 pages
50 HTML Codes
PDF
No ratings yet
50 HTML Codes
19 pages
Unit 2 Web Design
PDF
No ratings yet
Unit 2 Web Design
55 pages
CSS Pygame Solution
PDF
No ratings yet
CSS Pygame Solution
41 pages
HTML Handbook
PDF
No ratings yet
HTML Handbook
9 pages
McSL-016 Solvedlab Manual - Advance HTML
PDF
100% (1)
McSL-016 Solvedlab Manual - Advance HTML
18 pages
Unit 1
PDF
No ratings yet
Unit 1
48 pages
Session 1 2
PDF
No ratings yet
Session 1 2
54 pages
Lab Manual ITEC-241
PDF
No ratings yet
Lab Manual ITEC-241
21 pages
Intro To HTML & Javascript: (With A Little CSS, +libraries/frameworks)
PDF
No ratings yet
Intro To HTML & Javascript: (With A Little CSS, +libraries/frameworks)
57 pages
HTML
PDF
No ratings yet
HTML
11 pages
HTML Frame
PDF
No ratings yet
HTML Frame
39 pages
Assign 2 HTML Prac
PDF
No ratings yet
Assign 2 HTML Prac
12 pages
Web Design Programming Chapter 2
PDF
No ratings yet
Web Design Programming Chapter 2
34 pages
HTML, Css & Js Guest Ppt
PDF
No ratings yet
HTML, Css & Js Guest Ppt
219 pages
Microsoft
PDF
No ratings yet
Microsoft
20 pages
HTML Frames: Computer Iv - Fourth Quarter
PDF
No ratings yet
HTML Frames: Computer Iv - Fourth Quarter
13 pages
Unit 2-Understanding The Fun of HTML
PDF
No ratings yet
Unit 2-Understanding The Fun of HTML
36 pages
HTML-frames
PDF
No ratings yet
HTML-frames
8 pages
Information Technology
PDF
No ratings yet
Information Technology
26 pages
Module 8 Links
PDF
No ratings yet
Module 8 Links
15 pages
WT Week-1
PDF
No ratings yet
WT Week-1
9 pages
Why Do We Use Css With HTML
PDF
No ratings yet
Why Do We Use Css With HTML
24 pages
HTML Frame
PDF
No ratings yet
HTML Frame
39 pages
HTML-Frames
PDF
No ratings yet
HTML-Frames
22 pages
Curs 7 Programare
PDF
No ratings yet
Curs 7 Programare
15 pages
HTML5 and CSS3 - The Future of The Web Programming: Sergio Luján Mora
PDF
No ratings yet
HTML5 and CSS3 - The Future of The Web Programming: Sergio Luján Mora
43 pages
Fall'23.
PDF
No ratings yet
Fall'23.
4 pages
CH 2
PDF
No ratings yet
CH 2
76 pages
CSS Revise
PDF
No ratings yet
CSS Revise
206 pages
fsd HTML
PDF
No ratings yet
fsd HTML
29 pages
Webmatrix: Web Pages
PDF
No ratings yet
Webmatrix: Web Pages
69 pages
Web solutions
PDF
No ratings yet
Web solutions
37 pages
The Most Important Differences:: What Is XHTML?
PDF
No ratings yet
The Most Important Differences:: What Is XHTML?
5 pages
Outline: 2001 Prentice Hall, Inc. All Rights Reserved
PDF
No ratings yet
Outline: 2001 Prentice Hall, Inc. All Rights Reserved
34 pages
full stack soc
PDF
No ratings yet
full stack soc
46 pages
HTML
PDF
No ratings yet
HTML
103 pages
AJP Experiment 13
PDF
No ratings yet
AJP Experiment 13
6 pages
Web Banner Advertisements Presentation
PDF
No ratings yet
Web Banner Advertisements Presentation
10 pages
OSYProposal
PDF
No ratings yet
OSYProposal
2 pages
Chapter 4 CPU Scheduling
PDF
No ratings yet
Chapter 4 CPU Scheduling
65 pages
Sankirthan Raj Mavella - Full Stack Java Developer
PDF
No ratings yet
Sankirthan Raj Mavella - Full Stack Java Developer
6 pages
Example 1
PDF
No ratings yet
Example 1
6 pages
4.2.3.agreement in Failure - Free System
PDF
No ratings yet
4.2.3.agreement in Failure - Free System
5 pages
Chapter 12 Sequences, Series and Binomial Theorem
PDF
No ratings yet
Chapter 12 Sequences, Series and Binomial Theorem
6 pages
all in one
PDF
No ratings yet
all in one
89 pages
Department of Computer Science and Engineering: Comprehensive Viva-Voce Database Management System
PDF
No ratings yet
Department of Computer Science and Engineering: Comprehensive Viva-Voce Database Management System
9 pages
New Microsoft Word Document
PDF
No ratings yet
New Microsoft Word Document
37 pages
ThinkPad E16 (16 Intel) Lenovo Philippines
PDF
No ratings yet
ThinkPad E16 (16 Intel) Lenovo Philippines
1 page
Slides Chapter 5 Basic Processing Unit
PDF
No ratings yet
Slides Chapter 5 Basic Processing Unit
44 pages
Fisher EWN Series and EW 1 Series Valves: Scope of Manual
PDF
No ratings yet
Fisher EWN Series and EW 1 Series Valves: Scope of Manual
24 pages
131 Literature Survey Report
PDF
No ratings yet
131 Literature Survey Report
1 page
Improve Real-World RAG Systems
PDF
No ratings yet
Improve Real-World RAG Systems
43 pages
HFM Interview Question
PDF
No ratings yet
HFM Interview Question
7 pages
Literature Review Example Monash
PDF
100% (3)
Literature Review Example Monash
4 pages
DSP Direct, Indirect, Cascade, Parallel Forms
PDF
No ratings yet
DSP Direct, Indirect, Cascade, Parallel Forms
129 pages
AVH-275BT - AVH-175DVD - XNRC - IM (Asean) PDF
PDF
No ratings yet
AVH-275BT - AVH-175DVD - XNRC - IM (Asean) PDF
84 pages
Input Output Organization: IO Interface Modes of Transfer Interrupt Direct Memory Access Introduction To IO Processor
PDF
No ratings yet
Input Output Organization: IO Interface Modes of Transfer Interrupt Direct Memory Access Introduction To IO Processor
41 pages
Petrobras Angola 11-0XC2 12 06 2011-Project
PDF
No ratings yet
Petrobras Angola 11-0XC2 12 06 2011-Project
21 pages
Growbot Queue
PDF
No ratings yet
Growbot Queue
190 pages
HMMT February 2022: Algebra and Number Theory Round
PDF
No ratings yet
HMMT February 2022: Algebra and Number Theory Round
6 pages
CEM DT-9897 Thermal Imager REV 1 1 4 (1) Catalogue
PDF
No ratings yet
CEM DT-9897 Thermal Imager REV 1 1 4 (1) Catalogue
3 pages
PC Game List PDF
PDF
No ratings yet
PC Game List PDF
41 pages
CGR Practcal 8,9,10
PDF
No ratings yet
CGR Practcal 8,9,10
8 pages
Qihan NVR User Manual-V1.2
PDF
No ratings yet
Qihan NVR User Manual-V1.2
107 pages
Axis Camera - Network Video - Basic - Camera - Configuration
PDF
No ratings yet
Axis Camera - Network Video - Basic - Camera - Configuration
42 pages
Comparative Study of Hot Rolled Steel Se
PDF
No ratings yet
Comparative Study of Hot Rolled Steel Se
4 pages
CN_Unit-IV_Transport_Layer_04-11-2024.ppt
PDF
No ratings yet
CN_Unit-IV_Transport_Layer_04-11-2024.ppt
27 pages
VLSM Example 2 PDF
PDF
No ratings yet
VLSM Example 2 PDF
5 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
Marco Russo: DAX Optimization Examples
PDF
Marco Russo: DAX Optimization Examples
WEB PROGRAMMING Lab Manual
PDF
WEB PROGRAMMING Lab Manual
Ultra HTML Reference
From Everand
Ultra HTML Reference
Inventory Refers To Idle Goods or Materials That Are Held by An Organization For Use Sometime in The Future
PDF
Inventory Refers To Idle Goods or Materials That Are Held by An Organization For Use Sometime in The Future
Frames - Forms
PDF
Frames - Forms
HTML_Lesson8
PDF
HTML_Lesson8
Assignment 10
PDF
Assignment 10
HTML Frames
PDF
HTML Frames
Regular Expression, Rollover and Frames-1
PDF
Regular Expression, Rollover and Frames-1
HTML Frames
PDF
HTML Frames
Web Programming Lab Manual 26 May
PDF
Web Programming Lab Manual 26 May
03 HTML2
PDF
03 HTML2
CSE1041 - Web - 1 - Revampedweek3
PDF
CSE1041 - Web - 1 - Revampedweek3
Topic 4
PDF
Topic 4
Link and Frameset: Pierre Anthony O. Oreto
PDF
Link and Frameset: Pierre Anthony O. Oreto
Web Programming Lab Manual
PDF
Web Programming Lab Manual
frames&forms
PDF
frames&forms
Assignment 2 1
PDF
Assignment 2 1
Chapter 1 HTML Webpublishing / Notes On Webpublishing and HTML Class 12 IT
PDF
Chapter 1 HTML Webpublishing / Notes On Webpublishing and HTML Class 12 IT
2-Frames and Forms (Unit-2)
PDF
2-Frames and Forms (Unit-2)
HTML Module
PDF
HTML Module
Unit2 L6 HTML Frames
PDF
Unit2 L6 HTML Frames
Frames
PDF
Frames
Unit II - Lesson 10 - HTML Frames
PDF
Unit II - Lesson 10 - HTML Frames
Frames: Jennifer Ventus
PDF
Frames: Jennifer Ventus
Web Technology HTML, SGML
PDF
Web Technology HTML, SGML
50 HTML Codes
PDF
50 HTML Codes
Unit 2 Web Design
PDF
Unit 2 Web Design
CSS Pygame Solution
PDF
CSS Pygame Solution
HTML Handbook
PDF
HTML Handbook
McSL-016 Solvedlab Manual - Advance HTML
PDF
McSL-016 Solvedlab Manual - Advance HTML
Unit 1
PDF
Unit 1
Session 1 2
PDF
Session 1 2
Lab Manual ITEC-241
PDF
Lab Manual ITEC-241
Intro To HTML & Javascript: (With A Little CSS, +libraries/frameworks)
PDF
Intro To HTML & Javascript: (With A Little CSS, +libraries/frameworks)
HTML
PDF
HTML
HTML Frame
PDF
HTML Frame
Assign 2 HTML Prac
PDF
Assign 2 HTML Prac
Web Design Programming Chapter 2
PDF
Web Design Programming Chapter 2
HTML, Css & Js Guest Ppt
PDF
HTML, Css & Js Guest Ppt
Microsoft
PDF
Microsoft
HTML Frames: Computer Iv - Fourth Quarter
PDF
HTML Frames: Computer Iv - Fourth Quarter
Unit 2-Understanding The Fun of HTML
PDF
Unit 2-Understanding The Fun of HTML
HTML-frames
PDF
HTML-frames
Information Technology
PDF
Information Technology
Module 8 Links
PDF
Module 8 Links
WT Week-1
PDF
WT Week-1
Why Do We Use Css With HTML
PDF
Why Do We Use Css With HTML
HTML Frame
PDF
HTML Frame
HTML-Frames
PDF
HTML-Frames
Curs 7 Programare
PDF
Curs 7 Programare
HTML5 and CSS3 - The Future of The Web Programming: Sergio Luján Mora
PDF
HTML5 and CSS3 - The Future of The Web Programming: Sergio Luján Mora
Fall'23.
PDF
Fall'23.
CH 2
PDF
CH 2
CSS Revise
PDF
CSS Revise
fsd HTML
PDF
fsd HTML
Webmatrix: Web Pages
PDF
Webmatrix: Web Pages
Web solutions
PDF
Web solutions
The Most Important Differences:: What Is XHTML?
PDF
The Most Important Differences:: What Is XHTML?
Outline: 2001 Prentice Hall, Inc. All Rights Reserved
PDF
Outline: 2001 Prentice Hall, Inc. All Rights Reserved
full stack soc
PDF
full stack soc
HTML
PDF
HTML
AJP Experiment 13
PDF
AJP Experiment 13
Web Banner Advertisements Presentation
PDF
Web Banner Advertisements Presentation
OSYProposal
PDF
OSYProposal
Chapter 4 CPU Scheduling
PDF
Chapter 4 CPU Scheduling
Sankirthan Raj Mavella - Full Stack Java Developer
PDF
Sankirthan Raj Mavella - Full Stack Java Developer
Example 1
PDF
Example 1
4.2.3.agreement in Failure - Free System
PDF
4.2.3.agreement in Failure - Free System
Chapter 12 Sequences, Series and Binomial Theorem
PDF
Chapter 12 Sequences, Series and Binomial Theorem
all in one
PDF
all in one
Department of Computer Science and Engineering: Comprehensive Viva-Voce Database Management System
PDF
Department of Computer Science and Engineering: Comprehensive Viva-Voce Database Management System
New Microsoft Word Document
PDF
New Microsoft Word Document
ThinkPad E16 (16 Intel) Lenovo Philippines
PDF
ThinkPad E16 (16 Intel) Lenovo Philippines
Slides Chapter 5 Basic Processing Unit
PDF
Slides Chapter 5 Basic Processing Unit
Fisher EWN Series and EW 1 Series Valves: Scope of Manual
PDF
Fisher EWN Series and EW 1 Series Valves: Scope of Manual
131 Literature Survey Report
PDF
131 Literature Survey Report
Improve Real-World RAG Systems
PDF
Improve Real-World RAG Systems
HFM Interview Question
PDF
HFM Interview Question
Literature Review Example Monash
PDF
Literature Review Example Monash
DSP Direct, Indirect, Cascade, Parallel Forms
PDF
DSP Direct, Indirect, Cascade, Parallel Forms
AVH-275BT - AVH-175DVD - XNRC - IM (Asean) PDF
PDF
AVH-275BT - AVH-175DVD - XNRC - IM (Asean) PDF
Input Output Organization: IO Interface Modes of Transfer Interrupt Direct Memory Access Introduction To IO Processor
PDF
Input Output Organization: IO Interface Modes of Transfer Interrupt Direct Memory Access Introduction To IO Processor
Petrobras Angola 11-0XC2 12 06 2011-Project
PDF
Petrobras Angola 11-0XC2 12 06 2011-Project
Growbot Queue
PDF
Growbot Queue
HMMT February 2022: Algebra and Number Theory Round
PDF
HMMT February 2022: Algebra and Number Theory Round
CEM DT-9897 Thermal Imager REV 1 1 4 (1) Catalogue
PDF
CEM DT-9897 Thermal Imager REV 1 1 4 (1) Catalogue
PC Game List PDF
PDF
PC Game List PDF
CGR Practcal 8,9,10
PDF
CGR Practcal 8,9,10
Qihan NVR User Manual-V1.2
PDF
Qihan NVR User Manual-V1.2
Axis Camera - Network Video - Basic - Camera - Configuration
PDF
Axis Camera - Network Video - Basic - Camera - Configuration
Comparative Study of Hot Rolled Steel Se
PDF
Comparative Study of Hot Rolled Steel Se
CN_Unit-IV_Transport_Layer_04-11-2024.ppt
PDF
CN_Unit-IV_Transport_Layer_04-11-2024.ppt
VLSM Example 2 PDF
PDF
VLSM Example 2 PDF