Tagged Questions
The html-frames tag has no wiki summary.
5
votes
3answers
2k views
iframe 100% height
Is iframe height=100% supported in all browsers;
I am using doctype as;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
5
votes
3answers
1k views
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, so there's a frame in a that just ...
2
votes
2answers
303 views
Frame Replacement?
I'm currently redesigning an old web application that relies heavily on frames. I'd like to get rid of the frames because the painful javascript gyrations they require, but would still like the user ...
2
votes
3answers
800 views
How do I embed an ASP.NET Web Site (or Web Application) into another?
I have very little experience with ASP.NET and I am doing some self-training before I start writing my first web site/application, which will be a calibration utility. How that utility works is not my ...
1
vote
2answers
33 views
How to put DIV over FRAMESET?
I want to have DIV layer drawn over my frameset. I heard that DIVs can be placed inside <frameset> but it does not work for me.
The following example does not work. I don't even see DIV in ...
1
vote
2answers
145 views
How do I convert a website entirely made from frames into HTML?
I am looking to convert a clients website into HTML. I'm relatively new as my skills are more directed in the front end of websites (design) so I'm quite lost. The website is ...
1
vote
2answers
626 views
Javascript event not being set correctly in closure when called cross frame
I have the following code in the top frame of a two frame page:
function setKeyHook()
{
logMessage("setKeyHook()");
top.frames.BOTTOM.document.onkeydown =
...
0
votes
1answer
29 views
Migrating frames based code to non frame based code
I am migrating some old frames html code and its corresponding javascript to non-frame based code.
The old frames based html had something like:
<frameset rows="100%,0,0,0,0" border="0">
...
0
votes
1answer
156 views
Browser cache HTML frame content
I have a HTML frame on my ASP.NET page which pionts to a static HTML file.
The problem is if I change the HTML (frame contetnt) browser still shows the previous version. Even CTRL+F5 doesn't update ...
0
votes
0answers
369 views
Frames + JavaScript issue on Mobile Safari (IPad)
I am working on a project of a web application that uses two frames (this is a very old project and there is no way to change the fact that we use evil frames).
The problem that Im having is that ...
0
votes
1answer
74 views
Changing the frameset row value
I am changing the frameset with this line
parent.document.all("Edit").rows="0%,100%,0%";
this is the frameset i am changing
<frameset id="Edit" border="0" frameborder="0" rows="0%,0%,100%">
...
0
votes
1answer
149 views
HTML mask url with another url
I have two domains, one is a .com domain and the other is a .ca domain. My current host (on the .com domain) does not allow me to register .ca domains, so i registered one with Netfirms. Netfirms will ...
0
votes
2answers
289 views
HTTP Referer on HTML Frames
Say that I have a link from one.com to two.com/A.html. A.html looks like this
<FRAMESET cols="100%">
<FRAME src="B.html">
</FRAMESET>
The HTTP Referer on A.html is "one.com", ...
0
votes
1answer
145 views
Detecting and closing frames using Javascript
I'm working on an ASP.NET web application. There's a bill page which has two links to different pdfs of the same bill. When you click on one of the links it takes you to a ViewPDF.aspx page that ...
0
votes
1answer
986 views
accessing Frames rendered in webbrowser control in C#.net
i need to get the links in a page rendered in webbrowser control in C#.net. Problem is that i think the page uses Frames that's why i cant get any links from webbrowser. how can i access or see those ...
0
votes
1answer
1k views
javascript document.getElementById in other frames
so, I have 2 frames and want to access to element from one frame into another :
frame 1:
<div id='someId'>...</div>
frame 2:
var div=document.getElementById('someId');
...
-1
votes
1answer
67 views
How to “Show Only This Frame” - jQuery/javascript solution needed
In FF we can right-click "Show This Frame Only". So how to do it in javascript/jquery? Becoz i want to remove my webapps banner (which inside another frame of another frameset) but fail.
-1
votes
1answer
192 views
Does Window-target meta tag work for busting frames?
Does adding the followin tag in the header section of a html document prevent the loading of the document within a frame? If so, why does anybody bother with Javascript methods?
<META ...