In HTML, the frameset element is a container for dividing a browser window into rectangular subspaces called frames.

learn more… | top users | synonyms

0
votes
2answers
66 views

Emulate Frameset Separator Behavior

The HTML5 current specification removed the <frameset> tag. There is a nice feature of <frameset> which is not easy to reproduce without it: In a frameset, you can change the position of ...
0
votes
1answer
18 views

html5 iframe for nearly full screen?

I was looking into using a frameset on my otherwise XHTML 1.0 Strict site, but I've noticed that with HTML5 the frameset feature is obsolete, and an iframe should be used instead. I need to load a ...
0
votes
0answers
15 views

show different iframes based on page selected from dropdown

I have asked this quesiton before but no answer from anyone. I am caluclating the height of iframe dynamically based on content but having issues when loading a page that is having instead of tag in ...
0
votes
0answers
17 views

Frameset height

I have a frameset within an iframe. I am calculating the iframe height based on its content with javascript, by using the code below. Since we don't use a body tag with the frameset tag, I am having ...
0
votes
2answers
36 views

How to change frame height from another frame in frameset with javascript

I have a frameset: <frameset rows="30px,*"> <frame id="frame1" src="frame1source.html"> <frame id="frame2" src="frame2source.html"> </frameset> I need to be able to ...
0
votes
0answers
113 views

IE10 : Unable to load Frame content

I have multiple frames in a frameset and when a Frame content is loaded, The offsetWidth and offsetHeight I am receiving is 0. Its breaking in IE10 but working just fine in previous version of IE. ...
0
votes
1answer
63 views

HTML Page Layout Change at Runtime

A HTML page contains three frames. <frameset cols="30%, *"> <frame src="frame_a.htm"> <frameset rows="60%, *"> <frame src="frame_b.htm"> <frame ...
0
votes
1answer
61 views

Toggle frame within multiple framesets

Following situation: <frameset> <frame id="top"></frame> <frameset id="innerframe"> <frame id="nav"></frame> <frame id="main"> ...
0
votes
3answers
89 views

html: Putting a background under a frameset

What I am trying to do is probably very simple. I currently have frames in my index.html. I have a top, left, right bottom and center frame. This makes my page look pretty awkward. Here is my ...
0
votes
1answer
124 views

html move content from one frame to another

So I have put together a locally run web page which currently has 2 frames - one a nav bar and one for content which is defined with links in the nav bar. This is being run in internet explorer 8 and ...
1
vote
0answers
62 views

How do i invoke GSP file in framset tag

I have three groovy server pages and i want display thier content within frameset tag. <frameset rows="100%,*" onload="init()" onunload="terminate()"> <frame id="DisplayFrame1" ...
1
vote
1answer
91 views

does WebChromeClient unsupport php iframe tag?

i load an url given by other system in webview.but it doesn't display all contents,it leaves a blank window in the page.i check the source code,it has a frameset tag and some iframe tags. att src is ...
0
votes
1answer
34 views

How to Get Rid of a Single Border Between a Frame and a Frameset?

I've got a page with a toolbar in the top frame. I want borders between every other frame except between the toolbar and the two frames it borders. ...
1
vote
0answers
37 views

Changing the src of a frame according to a dropdownlist

I need to create a webpage with some frames. Inside one frame there is a dropdownlist consists of Home,Staff,etc. When user selects one item from the dropdownlist, then it should load the relevant ...
1
vote
1answer
61 views

html frame only allow horizontal resize ie8

I have created a web page with 2 framesets: <frameset id='frameset1' cols="30%,70%"> <frameset id='frameset2' rows="15%,85%" frameborder="0" border="0"> <frame id="headerframe" ...
1
vote
2answers
719 views

How to put a div overlay over framesets?

I have a requirement to create a please wait page using jQuery 1.6.2 for an existing jsp page. I was able to get the div overlay to work, along with an please wait animation in a modal window in the ...
1
vote
1answer
133 views

Responsive design and viewport not working through domain's “frameset.”

I'm working on a responsive design site and ran into a fairly large snag. I used viewport code: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, ...
0
votes
2answers
44 views

framesets and frame in SAS changing the height

I am updating and very old site that is using framesets. In the right 70% column I am attempting to force a height to accommodate a drop down menu. For some reason when I give the frame an ID and a ...
0
votes
0answers
32 views

Inconsistent jquery fadein behaviour between frames/no frames on IE

I've met inconsistent jQuery fadein method behavior in dependence if main site is run inside frameset or not. The effect is only on IE (tested on IE 9). I have blocking UI element: ...
1
vote
2answers
79 views

Recommended Way to do Frameset in HTML5

I'm trying to create a page in ASP.NET MVC that has my site's content in the top and another site's content in the bottom. An example of what I mean can be see at ...
0
votes
0answers
46 views

IE: box-shadow ignored when opened in frameset

I have the web application, where the shadows are used for input elements by using box-shadow property: .ui-inputfield { background: #ffffff; -moz-box-shadow: inset 0 2px 2px #8f8f8f; ...
0
votes
1answer
46 views

Multi-paned Web Page

What is the best practice for making a multi-paned web page? For example, I have a web page divided up like so: This page is for a VERY old internal application that I'm giving a much needed ...
0
votes
2answers
307 views

how to pick element inside iframe using document.getElementById

i have a iframe like this <iframe name="myframe1" id="myframe1" width="100%" height="100%" src="a.html"> <html> <head></head> <frameset name="myframe2" cols="0%, ...
0
votes
1answer
42 views

Scroll whole window according to second frame in frameset

I have frameset with two frames. First is a fixed height one and second can have different heights. How could i implement solution that would scroll whole window according to second frame, so the ...
1
vote
2answers
64 views

alternatives to frames

We have a web application and are using frameset for layout. Please see link as example (http://www.sportsmanager.us/orgmanager/NHYLA.htm). But I read that frames have been deprecated and also based ...
1
vote
0answers
151 views

iframe containing frameset document not expanding to full height of browser window

Have a problem that's been bugging me now for the past two days :( I have set up an HTML web page that contains an iFrame that loads a frameset document. Yes I know, frames are ancient tech and ...
1
vote
2answers
68 views

Tinymce with FrameSet not working?

i am using tinymce attached with Textarea in my project. It works great. But when text area is inside frameset, it does not work. here is small code snippet of textarea inside frameset. It works as ...
0
votes
1answer
120 views

Target frame via name attribute

I am working on an old app that uses 3 frames. One of the frames has a "name" attribute I am trying to target it via css like this but it's not working. HTML <frame name="classFrame" ...
8
votes
1answer
210 views

frameset do not resize correctly after resize by mouse

I have a frameset where in one frame have a button that minimize its parent frameset to a certain size. The code works but the problem is if I choose to resize frame with my mouse manually first and ...
1
vote
0answers
148 views

IE9 Document Mode in a frameset frame

I support an old, very large app with antiquated tabs, tree views, context menus, and a frameset. It is laid out with navigation tabs and tree views in a left frame and a data entry frame on the ...
-1
votes
2answers
64 views

why does my website appear inside a <frameset>?

I have a website (just for my own references, nothing interesting for the public.) When I load my page (Test Page) inside IE9 and view the source of the page - I can see the HTML as expected. ...
0
votes
2answers
339 views

Javascript window.frame.location on page load

I'm trying to change the location of an adjacent frame on page load with Javascript. I have a page with a frameset: <html lang="en"> <HEAD> <link rel="icon" type="image/x-icon" ...
1
vote
2answers
158 views

How to create transparent frameset?

I want to create a page with 3 frames in a frameset. My Home.html is the main page, with 3 frames, which is Header.html, Announcement.php and Footer.html. <frameset rows="10%,*,5%" noresize ...
1
vote
1answer
53 views

Positioning a frameset or frame

First of all: I know that it is not smart to use a frameset or frame, I know that, but this is a special case and I want to have just one simple answer: Can I position a frame or frameset, which is ...
2
votes
0answers
240 views

IE9 browser crashes if we close the window before it finishes loading

I have a situation here, when I am closing the IE9 browser window before it finishes loading, then the browser is getting closed and reopen. This results in my web application to crash. After some ...
0
votes
1answer
149 views

PHP $_SESSION data lost because frameset on IE

I would like to start saying that I had searched a LOT for this problem. After more than a week trying to solve it, I tihnk that I'm ALMOST there. Yes, I do put session_start() - not only this, as I ...
0
votes
2answers
277 views

rails navigation and partial refresh

Thanks for your time! I get some reports data on my hand and I want to present these data on the web. The view of the HTML will be divided into two parts, the left part and the right part. There's a ...
0
votes
1answer
106 views

How to close frameset?

I have a page where i have used framsets. Top Frame = header information(Like logout, login user information etc) left Frame = Menu Items Center Frame = Data pages for the corresponding clicked menu ...
0
votes
0answers
263 views

How to pass value from text box in frame1.jsp to frame2.jsp after click submit button

I have an index.jsp, frame1.jsp called and I need to pass the value in text box from frame1.jsp to frame2.jsp after click the Submit button to make database connection. I encountered error to do so. ...
0
votes
1answer
174 views

How to reload the frame and session value is not getting removed

i am using the loginpage which does not come in frame but once i logged in all the pages are in framset and when i try to log out (the logout link is there in the frame) only that specific frame is ...
0
votes
2answers
150 views

How to click-drag the contents of a frame with jQuery?

I am attempting to enable click-and-dragging (similar to the touch-drag interaction one might enjoy on an iPhone or an iPad) on a frame within an old-school frameset. The functionality I'm looking ...
0
votes
1answer
220 views

frameset in struts

I am new for Struts 2. I am trying to develop one web application using Struts Framework. IDE is Netbeans-7.2. I want to make 3 section in a page. eg: Facebook "friendslist", "wall post", "group ...
0
votes
0answers
74 views

No render when I create body object outside frameset

I am making a bookmarklet, which is a javascript that extracts images of a web page. The mechanism of my bookmarklet is: extract all the images inside the HTML document and inside frames of the HTML ...
1
vote
0answers
86 views

Dragging from one view to another in a frameset does not execute PostDragDrop

I have two side-by-side views in a frameset, one outline view and one calendar view. On the calendar view, I can drag between dates, my code perfectly executing. However, when I try to drag from my ...
0
votes
0answers
191 views

How to get cross-frame menu working?

I have problems with a dropdown menu in framesets: it is not visible, because I use a frameset. There is not much to find, but I found something really interesting and now I want to implement it, but ...
0
votes
0answers
21 views

Redesigning website: how to get rid of framesets and how to go further?

I am trying to redesign my website, because it has a frameset, that is annoying. It annoys me because I can't see a dropdown menu and a autocomplete suggestion because of it (it overlaps it). So now, ...
0
votes
1answer
45 views

Frameset makes dropdown invisible

I use framesets (I know, that is very very bad :)) and that works for me, but I have one little problem: the frameset does not allow me to see the dropdown box that I have made. It just shows one ...
0
votes
0answers
166 views

Can't see dropdown list items on web page

On my website you can click on "SEARCH" at the top, which will show a dropdown menu. The first list item is visible, but the rest of them are invisible (just click on search and you will see what I ...
0
votes
0answers
106 views

can the loading iframe be transfered to popup if it takes too long to open?

I have a web app that does a lot of background processing and I'm trying to see if there's a way to transfer iframe that is loading response to a popup, without reprocessing request, but continuing ...
1
vote
2answers
274 views

Is there an alternative to using Frames to combine multiple aspx files into a single page?

I am rewriting a site that contains around 10 separate frames which each display a bunch of separate aspx files. Is there a modern-day equivalent to using Frames for combining multiple aspx files, ...

1 2 3 4 5