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
13
votes
1 answer

Xcode 9 simulator remove frames

The new simulator comes with the frames that make it look more like a phone in Xcode 9 beta. Is there any way to remove this frames and make it look more like the simulator in Xcode 8?
user8118543
13
votes
3 answers

jQuery: Access frame in nested frameset

I have a document which has a nested frameset. I need to access one of the nested frames, named "sq_main", and access content inside this frame. Here is my structure: Title
Nic Hubbard
  • 41,587
  • 63
  • 251
  • 412
13
votes
2 answers

How do i wait for a specific frame to load? I'm using selenium webdriver 2.24

I used the webdriver backed selenium to wait for a specific frame to load. since in certain cases the switching to a specific frame fails because the frame hasn't loaded. The code I use is selenium.waitForFrameToLoad(frameJCLeft,…
cc_nuuB
  • 153
  • 1
  • 1
  • 4
12
votes
3 answers

contentDocument for an iframe

What exactly does "contentDocument" represent for an iframe (or even the old "frame" element)? Is it equivalent to the "html" element or the "body" element ? What is it's use? And is this property supported across all the browsers?
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
12
votes
4 answers

Get frame source with jQuery (after the source has changed)

This jQuery will return the source URL of a frame: $('#frame-name').attr('src') But if a link inside the frame is clicked, the original source is still returned. Is it possible to detect the new source URL? Or get the source of the new document…
ryonlife
  • 6,563
  • 14
  • 51
  • 64
12
votes
3 answers

Disable Cookies Inside A Frame/Iframe

Is there any way to programatically disable cookies being created by a page displayed inside of a frame/iframe? Or to generalise further, is it possible to programatically disable javascript running on such a page? Thanks, DLiKS
DLiKS
  • 1,586
  • 3
  • 20
  • 32
11
votes
6 answers

Why are HTML frames bad?

I know they are, but my co-worker doesn't believe me. He keeps telling me that Google crawls the inside content and caches it just fine. According to Google, it does crawl them, but doesn't guarantee doing it properly. Any thoughts why frames are…
sarsnake
  • 26,667
  • 58
  • 180
  • 286
10
votes
4 answers

Auto Layout vs Frame Sizes

So I'm slightly embarrassed to ask this because it seems so rudimentary but ever since beginning iOS development (about a year of self/internet teaching), when not using storyboards, I have relied heavily on frame sizes and used auto layout very…
Matt Clevenger
  • 297
  • 3
  • 16
10
votes
5 answers

How to do Delphi-like frames in C#?

Slight bit of background: I'm a Delphi programmer re-learning C# (learned in school originally, haven't hardly touched until recently), and am trying to get some of my Delphi concepts transferred over. The current situation is, I need to create an…
Tom A
  • 1,662
  • 2
  • 23
  • 41
10
votes
4 answers

How can i call a window child function in javascript?

I am calling the parent function like window.parent.functionname(); from the child page. How can i call the window.child.function() from the parent page to child page. Any help is appreciated.
Jonathan
  • 1,659
  • 8
  • 34
  • 54
9
votes
1 answer

How to detect if a site cannot be embedded via iframe?

I'm trying to embed some random sites in an iframe. I'm getting this error: Refused to display document because display forbidden by X-Frame-Options. I'm willing to respect their wishes and not embed it, but I'd like to be able to detect that this…
A Question Asker
  • 3,339
  • 7
  • 31
  • 39
9
votes
2 answers

tkinter - How to stop frame changing size when widget is added?

In the Page frame, I've weighted two frames inside innerFrame so that they each take up half of the screen, however, when I add a widget to one of these frames, I've used a listbox as an example as it is large, one of the frames now takes up more…
simpleguy
  • 273
  • 7
  • 18
9
votes
1 answer

WPF - pagination when printing a visual

I have a WPF window with a frame. I have some code to print out the content of the frame using the printdialog and printvisual. But this will only print what appears on the screen even though the frame scrolls and other parts are available. Is…
Unknown Coder
  • 6,625
  • 20
  • 79
  • 129
9
votes
3 answers

Frames deprecated in HTML5 but not iFrames

Why is it Frames were deprecated in HTML5 but not iFrames. After all, there is almost no difference between the two. In many instances using either of them would give the same output (pardon me if I am Wrong)?
user2134555
8
votes
1 answer

Processing Android video frame by frame while recording

What I am attempting to do is create an application that adds effects to videos while recording. Is there any way to have a callback method receive the frame, then apply an effect to it and have that recorded. There is currently an application on…
daveySET
  • 83
  • 1
  • 3
1
2
3
66 67