Questions tagged [frames]

HTML frames are a way of displaying multiple HTML documents in a single browser window.

A frameset is a special HTML document type that has been designed to display separate HTML documents at the same time within tiles of the window.

Note

Both frame and frameset tags in HTML have been removed from . This has been done because of the fact that they damage usability and accessibility. When frame capability is needed, it is possible to use iframes instead.

source.

1007 questions
453
votes
27 answers

Overcoming "Display forbidden by X-Frame-Options"

I'm writing a tiny webpage whose purpose is to frame a few other pages, simply to consolidate them into a single browser window for ease of viewing. A few of the pages I'm trying to frame forbid being framed and throw a "Refused to display document…
Garen Checkley
  • 5,512
  • 6
  • 22
  • 24
67
votes
3 answers

Why are frames deprecated in html?

HTML has had frames from early days, but they are deprecated in the latest version. Many browsers (I have tried with Internet Explorer) don't even display frames properly. Why has this been done? What was the drawback in frames?
SonOfTheEARTh
  • 1,858
  • 5
  • 21
  • 23
64
votes
8 answers

Detect failure to load contents of an iframe

I can detect when the content of an iframe has loaded using the load event. Unfortunately, for my purposes, there are two problems with this: If there is an error loading the page (404/500, etc), the load event is never fired. If some images or…
Daniel Cassidy
  • 24,676
  • 5
  • 41
  • 54
39
votes
4 answers

Run JQuery in the context of another frame

The client I am working with has a frameset like so...
ChrisDiRulli
  • 1,482
  • 8
  • 19
  • 28
25
votes
3 answers

How can I get an element from within a frameset frame using JavaScript?

I need to access and element from within a frameset frame. For example if I have the following markup: How can I get some…
Nick
  • 19,198
  • 51
  • 185
  • 312
24
votes
3 answers

Java Script, Difficulty getting list of all nested frames in page

Hello I need to get list of all frames for my GreaseMonkey script but in fact i guess it is general Javascript question. It would be great if I could get to every single frame that is nested in page. So far i got problem getting number of frames…
MoreThanChaos
  • 2,054
  • 5
  • 20
  • 40
22
votes
3 answers

IE6 Frames & Memory Leak

Before I start this question, I understand that every aspect of it is wrong. Please keep that in mind... I have an CRM-ish intranet application with an integrated soft phone developed in 2001 that I've inherited. It's basically a collections…
Doug Weaver
  • 1,581
  • 2
  • 9
  • 8
22
votes
2 answers

What causes Chrome Timeline Frame to have so much empty white space

Sometimes when I Inspect Element in Google Chrome I find that I have some large frames, but they are filled with white space. Anyone know what often causes such large amounts of empty space? I have seen timers cause issues with extending the…
afreeland
  • 3,889
  • 3
  • 31
  • 42
21
votes
8 answers

Why should I not use HTML frames?

I haven't used frames since 1998. They seem like a bad idea and in all my development I've never had a situation where frames were the right solution, or even a decent solution. However, I'm now working with an internal web application written by…
rvarcher
  • 1,566
  • 1
  • 12
  • 14
20
votes
4 answers

When should I use HTML frames?

I have heard countless reasons on why not to use HTML frames, from their lack of accessibility, the general lacking in UX, their being completely inefficient/unmaintainable, or them just being outdated. This all brings me to two questions: Does…
Moses
  • 9,033
  • 5
  • 44
  • 67
17
votes
2 answers

Can you change a widget's parent in python tkinter?

Is there any way to change a widget's (ttk.frame in this case) parent? I can't find any keywords to use in the widgets .config. Is this not possible in python tkinter? What I'd like functionally is to take my current frame in my tkk.notebook widget,…
Ponml
  • 2,917
  • 5
  • 20
  • 17
17
votes
3 answers

How to communicate between frames?

I'm maintaining an application that goes sort of like this: There is a Page A with a Frame that shows Page B. Now page B is part of a completely different product in a separate domain. Now, they want that when an option in B is clicked, the WHOLE…
Francisco Noriega
  • 13,725
  • 11
  • 47
  • 72
16
votes
4 answers

How are the facebook chat windows implemented?

On Facebook you can browse the site without affecting the floating chat windows. Seems like if the main page was inside an iFrame and the footer and chat windows where floating outside. (source: k-director.com) Is the main content inside an iframe…
Santiago Corredoira
  • 47,267
  • 10
  • 52
  • 56
16
votes
4 answers

How do I reduce frames with blending in ffmpeg

I am trying to convert some files into ProRes. One fairly important part of the conversion is: reducing frames from 60 to 30 blending every 2 frames into one and achieving a more fluent movement. (a simple sort of motion blur) I have tried the…
user3213418
  • 169
  • 1
  • 3
16
votes
12 answers

JQuery and frames - $(document).ready doesn't work

I have a page, with some code in js and jQuery and it works very well. But unfortunately, all my site is very very old, and uses frames. So when I loaded my page inside a frame, $(document).ready() doesn't fire up. My frameset looks like:
matma
  • 1,104
  • 1
  • 10
  • 17
1
2 3
66 67