many framed sites have an ancient script in all their pages:
if(top==self) top.location=theframeset
Some friendlier ones do this:
if(top==self) document.write( '<a href=frameset>This page is '
+ 'supposed to be frames</a>.' )
These scripts fail when the page is loaded within somebody's else's
frameset.
Then top is not self but not a very cooperative top either. And with ever
growing security issues browsers have become quite paranoid. Even testing
for top's origin results in an error:
alert(top)
// gives me [object]
var s='' for (var i in top) s+=i+' '+top[i]+'
' alert(s);
var obj; try{ obj=top.location; } catch(e) { obj='' }
// give me [access denied] (of course)
I 'd rather drop the frames altogether, but the site has been like this for
years and the client insists. There are frames. So how would I detect when
it is appropriate to write:
<a href=>View this page in its <b>own</b> frames.</a> ?
Question b:
in the frameset, a little script looks into self.location.search for an url
with which to fill the main frame. Is there a way to avoid document.write
and onload?
I need sometype of function to redirect the browser window to an ASP page that clears a few session variables and deletes some temp entires into a database. I tried this in the head:
I have a print button in PHP page which using javascript window.print() to print web page.
However , when user click "print" , the print preview display that the page cut-off and alignment is out.
Read on regarding the matter , and found that is not the issue of PHP . Some users recommend to me to use CSS and HTML to create printer friendly page. However my page is extension is in php , can i use CSS and HTML to create printer friendly page?
When the user clicks on the password form field, the background image is suppossed to be replaced with a white background color. All I get is a javascript error, and I copied straight out of the newsletter.
I have an html based website that needs urls converted from [URL] to [URL] the website has no mysql database. the urls are written through javascript. download from below the js + html files Code: [URL] urls writing rules can be found on common.js and set_form_menu.js.gz files
I am developing a site for a client that requires the printer friendly verison of the site to appear in a separate pop-up window. I am having trouble figuring out the scripting needed to have the current page open in a separate window with a different style sheet applied to it.
Here is my code that works flawlessly in IE but I can't get it to work in firefox. what firefox doesn't like about this code?
<SCRIPT language="JavaScript" type="text/javascript"> //POPULATE COMBO BOX PER RADIO BUTTON CHECKED function UpdateCombo() {
[code]...
Now, I obviously left unrelated code out here; but that code is the basic of what Im working with, but the combo box is just empty in firefox. Works fine in IE; so I'm guessing it doesn't like something with the code:
I've added the most basic implementation of JQuery tabs. It's working fine so long as there's not a url-friendly query string.In other words, if I load index.php, it will work fine. Even index.php/anystring doesn't have any problems. However, if I try to load something such index.php/anystring1/anystring2, none of the CSS styles for the tabs appear to be applied to the tabs list making all the tabs' contents appear on the same page.how I can work around this to ensure I can preserve the current format of query string without breaking the tabs? Using the old fashioned way doesn't appear to result in any problems, but I'm trying to avoid having to revert to that format.
As a rule, I don't like frames but I'm stuck supporting a web that uses them. I have a page, default.asp, that has a header and body frame: "fHead" and "fBody". What I want to do is to prevent default.asp from ever loading itself into "fBody". Some users still have code that causes this behavior.
So how, using javascript , can I do something to the effect of: "If default.asp tries to load default.asp (itself) into fBody, then reload the top-level browser window with what fBody is trying to load."
my main page consists of frames. i'm using ssi to include copyright info, tos, and a privacy statement at the bottom of each page.
the ssi is working on all regular (ie non-frame) pages, but it doesn't seem to be called or parsed on the main page.
a look at the source shows the ssi call just sitting there, doing nothing. has anyone dealt with this before? i didn't think it mattered if an ssi was called from within a framed page, but i might be wrong.
i suppose i can just use the actual html for that one page but i'd rather just be able to use ssi since it's used through out the rest of the site.
Let me just start by saying... and I truly do mean this... I HATE frames. Now that I have that out of my system, unfortnualty I do not have a choice and am forced to use the complex structure that I am so SO needing help with. My framesets look like this
--------------------- | title | |-------------------- | buttons | |-------------------- | base | |--------------------
inside the base frame I have ANOTHER frameset... split into frmLeft and frmRight... now if your mind isnt tied into knots... I am sure this will do it... I have a button called 'add category', which is on the buttons frame. When I click the button, I get a popup with the details... I add the category details... then I need the frame titled frmLeft to refresh. Is this possible?
What's the trick to sharing cookies between frames? I can set and read a cookie in the same frame, but if I try to read the cookie in another frame it is undefined. :o(
There are some other cookies that are available in all frames, so I know that the frames are capable of reading cookies, just not the ones that I set in the other frame.
I apologize if this is not the right group for this, but I saw some other messages on this topic in here, so thought I'd take a shot in the dark...
I am running IE 6, XP, SP2. When I connect to certain sites that use inline frames, I get the message 'Your browser does not support inline frames or is currently configured not to display inline frames.'
The aggravating thing is I recently bought multiple Dell computers, have 2 in the room with me right now, haven't touched a thing browser-wise on either, and it works fine on 1 and not the other. Same OS, same IE version, etc.
How can I refresh a page in a separate frame. For example, when someone logs in in the main frmae, I want to refresh another frame to display info differently.
I am using frames - yes frames - I do not know how to do anything but and I know that there is better out there......but........ I am trying to set a frame so that it automatically puts a page corresponding to the month in that frame (a calendar) Code:
I have a script for printing the contents of a frame. It works fine but I would like it not only to print the designated frame but to add a header or message at the top or bottom.
i'm trying to use javascript to change the content of a textbox in a different frame.
by clicking on a 'folder' link in 'leftFrame' i want to put the value assigned by that link into the 'folderName' textbox in the 'uploadForm' form in 'mainFrame'. i'm doing this as...
this works perfectly fine with IE and Safari on my Mac OS X machine and IE 6 on my PC laptop but anything Mozilla-based on either machine gives me an error i just can't seem to get round...