iframe

Checking if iframe is ready to be written to

A 3rd party script on my web page creates an iframe. I need to know when this iframe is ready, so I can manipulate its DOM. I can think of a hacky approach: repeatedly try to modify the iFrame's DOM, and return success when a change we make sticks between two attempts. For this to work, I would prefer a property I can check on the ifram...

How does one print iframes?

I built a printable version of my data using multiple iframes to display line item details. However, if any of my iframe content is larger than a page they get cut off when printing (they display fine on the screen). All of my iframes point back to the same domain and I'm using the browser's File->Print function to do my printing. I don'...

Scripts do not execute when changing the content of an iframe with innerHTML

Hi, I would like to load the content of an iframe with JavaScript. I don't want to change the src but directly the content with: document.getElementById('frame').contentDocument.body.innerHTML = data; It works but the JavaScript in data is not executed. Is it a security protection or I forgot something? ...

Is it possible to disable right click on an iframe?

Is it possible to disable right click on an iframe? I know it might be possible if the file in the iframe resides in the same domain,but i was wondering if it could be done if the file in the frame was from an external site? thanks ...

How to Merge GWT (Google Web Toolkit) Project and Dynamic Web Project (i.e. Java Web App/Servlets) in Eclipse?

I currently have a primary Java Web App Project which houses some Servlets, JSPs and static HTML pages. Later on, I also created a second Eclipse Google Web Toolkit Project (GWT). Now, after finishing the GWT Project, I want to integrate or merge the GWT Project (while retaining its RPC capabilities with Servlets) with the Primary Java W...

"Access is denied" when script tries to access iframe in IE8

I am "lazy loading" a 3rd party ad script on my website by overwriting the document.write function and restoring it at a later time. This ad script creates an iframe, and tries to write to it. I am seeing an "Access is denied" error in Internet Explorer 8 (but not in FF, Safari, or Chrome) when the script tries to access frame.document....

Decoupling HTML from JavaScript in bookmarklet

(Can't think of a good title :(( ) Hey all, I'm developing a bookmarklet. When clicked on it creates a toolbar on the page the user is looking at. The above involves pulling various javascript and css files from my server and injecting them into the pages DOM. I don't want to encode toolbar's HTML as a string inside one of my javascr...

Using relative url for window.location in child iframe

Hi, I'm having trouble with an iframe-related issue. I have a document (parent) with an iframe (child). If the parent document calls a function in the child which changes the childs url using window.location to a relative url, that url becomes relative to the parent document. Let me illustrate. Parent document: /test/parent.html ...

how to style the scrollbar of on iframe?

Is it possible to change the style of the scrollbars of on iframe? i tried to style it by using the following code but it doesnt seem to work html{scrollbar-arrow-color: #252604; scrollbar-highlight-color: #BFC097; scrollbar-shadow-color: #ffffff; scrollbar-base-color : #000000; scrollbar-track-color: #E2E1D4; scrollbar-face-color...

problem iframe IE8

we have iframe <iframe src="m1.html"> </iframe> <div style"display:none"><p>contents</p> <img src="url-session-data" /> <div> through jquery ,we are loading div contents to iframe , problem is image is not loading in IE8 but working fine in IE6,FF etc any suggestion? Note: url-session-data is dynamic loading ...

How to pass an IFRAME SESSION to the parent page?

Is it possible to pass a SESSION variable from am embedded IFRAME to the parent page? Meaning: <form> <iframe> upload image to fake AJAX. With PHP, set $_SESSION to be the location of the temporary uploaded photo </iframe> <input type="submit" /> // will this form submit have the $_SESSION variable set from the IFRAME? </form> ...

Can't appendChild to a node created from another frame

I have a page with an iframe and would like to extract a DOM node from the child frame and put it on the parent page. This works in Firefox (3.5), but not in Internet Explorer (7). I've broken down the code to the simplest I can. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict...

How to check if external URL content loads correctly into an <IFRAME> in JSP page using HTTP response code

I am looking into a solution that would allow to load an external URL content into an <iframe> element in a JSP page. However, before displaying any content, JSP code would first check for HTTP response of included in iframe's src URL and if 200/OK returned then display it otherwise a custom message or another page is displayed instead. ...

jquery - how to make an iframe from a script i found into an ajax injection?

I'm wondering how i would change this appended iframe: $("#GB_window").append("<iframe id='GB_frame' src='" + url + "'></iframe>"); into a div. Is there a way to change this so that i'm not appending an iframe, but instead using ajax? I need to be able to use the src='" + url + "' part of it. i'm still a novice. If you'd li...

Resizing cross-domain iframe

Hello, I've heard that it's possible to poll the url of an iframe for a hash to do something with it from the parent. What i need to do is set the height of a cross domain iframe dynamically. So whenever the height changes, the iframe sets its url to someurl#height. Now i need to access the hash (#height) from the parent, but it still w...

Why is document.write behaving oddly with an IFrame?

The javascript code below is called by an event in order to overwrite the contents of an iframe with id jj. It works properly. However, removing the calls to open() and close() cause the iframe to become blank every other time the code is called, at least in IE8 and FF3. Opera doesn't seem to care. What is going on here? var a = doc...

Linking to Fancy Box Inside an iFrame

Hey, I have a site going here: http://treethink.treethink.net/ All the fancybox iFrames work but if you go the portfolio section then click on one of the links it takes you to a page and closes Fancy Box. How can I modify Fancy Box so that when one of those links is clicked inside the portfolio iFrame, it stays in the iFrame and goes t...

What is the best way to create a web widget that gets parameters from the site that holds it and use those parameters for a web application on a different URL.

I would like to build a widget that should be embedded easily in any kind of website. The widget needs to get a few parameters from the website that holds it, and the widget will run a web application that located in a different URL using those parameters. i thought about using an script that have the web application url as the source ...

How to open a link in the background ...?!

I need to open in the background of my page ( something like a iframe) a webpage that redirects to another webpage. So A is my main page and I want to open page B, that redirects to page C. So the page B and page C should be opened in the background, without user knowing. If I use iframe, my current page(A) gets redirected too to C and...

move input text from iframe to main window

I have an iframe on a page that allows us to upload an image, once it's uploaded it displays the url of the file in a text input field. On the main part of the page, we have our textarea where we write up our news posts. I'd like a way so that I can add a link on the iframe, next to the url field, that when clicked will automatically in...