How do I make a link or form in one frame update another frame?
Answer / Jaspreet Kaur
To communicate between frames, you'll need to use JavaScript. One common method is by setting up a communication channel using the `parent`, `self`, and `top` properties of the window object. Here's an example:
```html
// In one frame (the parent)
window.onload = function() {
top.otherFrame.location = 'http://example.com';
};
// In another frame (otherFrame)
window.name = 'otherFrame';
```
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I include comments in html?
What is w3c recommendation?
What is the difference between html4 and html5?
What does :: before mean in html?
How many html5 tags are there?
How can we embed Video in HTML 5?
What is text tag in html?
What is a description tag?
Why are not my frames the exact size I specified?
What is a html link?
What are title tags?
Why to use xhtml.