I have made a html page and two website take it on her website like a frame.
I want to change the color of my frame. So i have to know witch ... |
This seems really simple, but how do I call a javascript function that's defined in the top-level html, from a child frame?
top html doc
- 1st level frame
...
|
I have a function that resizes the col width ratio of my frameset in "frame.html":
<frameset id="set" cols="*,*" FRAMESPACING=0 BORDER=3 BORDERCOLOR=#eeeeee>
<frame src="index.html">
<frame src="index2.html">
...
|
Before the question, let me preface this with the fact that I am working on a very atypical project. I am not concerned with security or cross-browser implications. I am using ... |
i believe that i have to use an array but im not sure where it should be placed and how it should look. im working with javascript and am kinda new ... |
I want to automatically call a js function that is defined within a frame on an HTML page that I'm landing on.
Is it possible to do this in GreaseMonkey?
|
I'm working on a accient project which based on and tags.
Here's the common HTML structure of the parent page (index.html):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
</head>
<frameset ...
|
|
I have a 3rd party generated frameset (from a help system) and I can add code to the subframe that has my content pages. I cannot modify the other frameset content ... |
I have a page A, which is split into two frames B and C, now i have functions in A that i want to call from B, everywhere i've looked seems to say top.funcname() or parent.funcname() but neither of these seem to work. A.... |
|
Function that returns to original frame I have an XML documented which was converted to HTML. When a user clicks on an animation or jpeg link, the single frame view is split into two frames: Text on the left frame and the animation or figure displayed in the right frame. I think need to include a variation of the script: onClick="MM_goToURL('parent','frameset.htm');return ... |
I have a page with an iframe in it. The parent frame has a few JS functions I want to execute when you click on a link. I tried the target field in the but I knew that was a long shot. How do I execute that function in the parent window? |
I have a function as follows: function setFrame(){ loadFrame(); alert("frame loaded"); } function loadFrame(){ var iframe = document.getElementById("myIFrame"); iframe.src="http://www.google.ie"; } The problem is that the alert message appears before the iframe has loaded the google page. Is there something I can do in loadFrame() that after setting the iframe src I make the function wait till the iframe loads. i.e. iframe.src="http://www.google.ie"; ... |
I am working with iframes to set up a navigation system. The navigation will be on the left and the active link on that left nav will be highlighted to indicate which page you are on. However, I have also include a "next" and "previous" link on the bottom frame of the right side. I would like these to be able ... |
only thing you can do which is more of a hack is use floating DIV's in your page and instead of having your pages navigate to a new page, you instead have different content load into the div frame. If you look at any pure DHTML site you will see what i mean. You cant hit back because the site loads ... |
|
|
|
I have a frame called 'HEADER'. From this frame I would like to innitiate a Javascript Function in a frame called 'CONTENT'. ( function SearchWindow() {....} ) Is this possible and what should the script look like? parent.content... is as far as I got. But I can't find the right function/variable for calling a function. Please, any help is appreciated Jazz ... |