frameset

HTML Frameset alignment

Say I have 3 frames in a frameset arranged in 3 rows. Frames 1 and 3 are from my site and frame 2 (the central one) is from an external website. Is there a cunning way to force the browser to centre align the data in frame 2? I've found a small work-around which uses a frameset within a frameset which has 2 blank columns either side of ...

frameset - swap columns with rows using javascript.

Hey everyone, I have a frameset with it's cols attribute set to "50%,50%" at the moment. I have a toggleView method which is called after a click on an element. What I aim to do is to change frameset from displaying cols to rows, again divided 50/50. I have attempted to perform a removeAttribute("cols") on the frameset, while this doe...

Safari Frames Invisible Scrollbar

I'm working on a website that uses not just frames, but frames within frames (ew, I know, but I don't get to choose). It actually works ok most of the time, but I'm running to a problem with some of the frames within frames on Safari (only). Some of the two-deep frames render in Safari with a small space on the right-hand side of the f...

Target attribute in IE7

We have some web pages which have two frames, with one frame in the IE 6 search bar (created using the open("path.htm", "_search"); call). The page shown in the frame on the search bar contains buttons, on click of which we update the right frame. On migration to IE 7, both frames open in their own windows, i.e, I now have two windows op...

disabling frame resize in Firefox

I have the following frameset: <frameset rows="625,*" cols="*" framespacing="0" frameborder="0" border="0" noresize> <frame marginheight="0px" src="music-NEW.php" name="mainFrame" scrolling="NO" frameborder="0" noresize> <frame marginheight="0px" src="musicplayer.php" name="bottomFrame" scrolling="NO" frameborder="0" nore...

Setting location.hash in frames.

I am using ajax to update the location of a page in a frame. But when setting the location of the hash (on Chrome and some versions of IE (5.5) specifically, but occasionally on IE7) the page is being reloaded. The following html demonstrates the problem. the main frame.... frame.html is <html><head> <frameset rows="*"> <frame src=se...

Frameset won't work in IE8

I have constructed a frameset which is meant to center a webpage in the middle of the browser window. <html> <frameset rows="100%,567px,100%" border="0"> <frame src="blank.html" noresize="noresize" scrolling="yes"> <frameset cols="100%,1128px,100%" border="0"> <frame src="blank.html" noresize="noresize"...

can a page always refused to be iframed or be part of a frameset if javascript is enabled?

When a page is iframed or included as part of a frameset, it can use Javascript to check so. (i think usually by if (self != top) top.location.href = self.location.href; ). Can the page always "jump back out" like that when Javascript is enabled? Is there a way to not let it jump back out? (suppose my page is iframing that page). ...

iFrames vs. Framesets to display without obscured bottoms (for Diggbar experience)?

Hi, There are lots of posts regarding iFrames and framesets, but I have not found one that addresses my concern: are framesets bad to use? Understanding the potential for backlash against framed websites, I want to recreate the Diggbar -- only instead of one iFrame underneath, I want two or more. This Stackflow thread offers a solutio...

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 another group and the entire site is built in a - header, left side menu, right side conten...

How to get javascript in one frame to wait until a page has loaded in a second frame

I have two frames in a frameset - frame[0] contains a script that loads a page into frame[1] using top.frames[1].location.href = 'http://some_location.com/page.html'; and then performs actions on that page, for example searching text within the page. I need the script to wait until page.html has loaded in the second frame before doing...

HTML Frame Source

Hey is it possible that I insert the source for a frame in the same page in which it is defined. Like instead of giving the location to the document, can I insert the source in the frame tag? The problem is I'm calling a function, which is not valid in the other page. So I have to call it in the same page, Got mE? ...

Caching issue in frameset frame

Hi, I have a web application and it is done in VS 2003[C#]. There is a frameset which is divided into 3. TopFrame LeftFrame ContentFrame LeftFrame loads contents related to each logged in user. The contents are loaded from SQL Server 2000 database. But there occurs a strange problem when one user logs out and another logs in. The...

Settimeout - frameset in Asp page

Hi, A classic page consists of 4 frameset. if all 4 frameset is inactive then timeout to login page.How to set timeout for classic asp page with frameset. ...

Is there a non-frame set method of achieving an 'external link bar' at the top of the browser viewport

The goal is to 'soften' hyperlinks off to external content slightly by displaying an external link bar at the top of the window, that displays above the content on the external website - containing a line of text that reads something along the lines of "The content you are viewing is not owned by this site, close this browser window to r...

HTML Frame Force New Window in all Links

Hi if I have frames setup on a page, is there a way to force all links in a child frame to open in a new window('blank') rather than 'self'? I have no access to the page that I have in my frame, sometimes the links open new pages sometimes they just transfer to a totally new page. I want to keep some consistency by making all links ope...

how to do a URL masking in this condition?

I am using php, js, flash and mysql on 1 website. I want to do a URL masking using frameset(or maybe iframe). Scenario: An user click on a link, which direct him/her to my page with this url: www.domain.com/index.php?var1=string1&var2=string2 How to mask the url so that visitor can only see www.domain.com/index.php, but actually ther...

html how to create frames

Hi I would like to create an html frameset like the picture below. can anyone point me in an helpful direction as I'm not sure how to create this? Should I use frameset or something else like AJAX? ------------------------------------------ | | | | |-------...

Body onresize event does not fire in IE7 when page is part of a frameset and resized vertically

I have a simple frameset with two frames vertically, i.e. two rows: First row contains a fixed header. Second row contains a fixed toolbar at the top and a resizable are at the bottom. Due to rendering differences between browsers, I cannot just enable scrolling for the "content" frame, as this would mean that the entire frame, includ...

Ajax breaks frameset in IE only

I have an issue with frameset breaking down and I have gotten a little help here on the forum. Now I have finally tracked down when things go south so here is my current problem. 1 I have a frameset with Top, Menu and Main 2. Links in Menu open views in Main 3. This breaks down on saving documents in Main. After saving all links in Menu...