iframe

IE7 iframe blank page

I am working on a web page which has an iframe and I am loading an external site in the iframe. The page works fine in IE6, FF etc but in IE7 all I see is a blank page. I found that this is due to the phishing filter in IE7. The phishing filter will not be able to check the web page inside the iframe so it will not be rendered properly...

This page contains both secure and nonsecure items and iframes

IE 6.0 is giving me the message "This page contains both secure and nonsecure items" because I have iframes on my page (for the combo box bug). I have tried pointing to a few different things in the src but I can't seem to get rid of this message without putting in a blank html page, which I would like to avoid so there isn't a server ca...

changing the request headers for the page that is being loaded in an iframe

I am using Appweb server (mini http server) and facing an issue while opening a webpage using https. The page is getting truncated and when looked at HTTP response headers found that webserver is sending response in chunks (Transfer-Encoding set) and that is the root cause. It seems to be a bug in webserver. I built webserver again disa...

HTML CSS: Iframes/Dynamic Problem

I am having some trouble creating a experimental 'dynamic' style website. The site is set up as follows. The user has a menu of links to choose from, specifically using an image map. When they hover over a selection, an iframe pops up (becomes visible) displaying some data. When the user removes the mouse the iframe goes away, until t...

getting up to date contents of an iFrame

Is it possible to get up to date contents from an iframe? Lemme explain the problem I am encountering: function modify_iframe(url){ my_iframe.src = url; iframe_content = my_iframe.contentDocument; //....code to modify the content goes here,,,, } The first time I call modify_iframe(url_a) it sets the source as I would expect but...

Adding event handler to an iframe using JQuery

I want to assign a keydown event handler to an iframe. Something similar to the pure JS: document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true); I tried: $(document.getElementById('iframe_id').contentWindow).keydown( function() { // my func }); But it does not work.. Please help! ...

How are the facebook chat windows implemented?

On Facebook you can browse the site without affecting the floating chat windows. Seems like if the main page was inside an iFrame and the footer and chat windows where floating outside. Is the main content inside an iframe or are the footer and chat windows the ones inside an iframe? The later doesn't seem possible because int this ...

P3P issue with IE and iframe

This is regarding this problem here http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer I have set up my p3p fine as far as I know (The p3p validater doesnt return any errors), but i still get blocked cookies. The src of my iframe is an external website, is there anything special i have to ...

How to prevent iframe from resizing parent window?

I have a page with iframe. Content inside iframe does window.parent.resizeTo calls (or something similar that in result resizes whole browser window). It does so to accomodate for its contents. I want to prevent resizing of whole browser window and just change the size of iframe element instead. Is there a way to intercept these resize...

Inspect in IFrame in IE8 Developer Tools?

I really enjoyed using the Developer Toolbar with IE7, and recently upgraded to IE8 to take advantage of (what appeared to be) more full-featured developer tools. The IE8 tool is really excellent (finally rivals FireBug), but I can't seem to inspect inside an iframe, which I could with the IE7 toolbar. I'd prefer not to downgrade to ...

Classic ASP, ASP.NET, IFrames and response.redirect issue....

A client has an asp page with an iframe. The Iframe loads an asp.net page inside the asp classic page. The ASP.NET page is responsible for connecting to a webservice, displaying some data, and then when the user clicks a button it does a response.redirect another classic asp page. Since the asp.net page is in an iframe, the asp page l...

How to access an iframe in an Adobe AIR application?

Hello, I am trying to use the embedded webkit in AIR to write a little browser with HTML+Javascript. I am so displaying the page at the URL typed by the user in an iframe. From there, I would like to: access the content of the frame, for example to display the of the page on a tab. be alerted when the user clicked into the frame, f...

Alternatives to Iframe

I have been developing a service that allows users to insert information from my database onto their sites by using iframes. The only problem was that the iframe needs to be resizeable and this is one of the biggest problems with iframes as most people already know, aswell as the fact I can access objects on the parent page from within t...

How to redirect parent window from an <i frame> using Javascript?

What the title says. How can it be done? I want them to click a hyperlink which, using javascript or any other methods, would redirect the parent window to a new url. ...

checking for scrollbars

Is there a way to check for scrollbars? What I need is a way to see if the user has written too much text in an iframe (using punyMCE). If the user has gone beyond the allowed number of lines (which will cause scrollbars to appear), I want to tell the user that the maximum number of lines has been entered. Now there is a second problem....

Using CSS to affect div style inside iframe

Is it possible to change styles of a div that resides inside an iframe on the page using CSS only? ...

How to make an iframe which displays the parent page

I want to display an iframe in a .aspx page, and the iframes source should be the same page. I need to use a relative uri. What value should I give the 'src' attribute? I realise this is a little unusual - the page will be displayed in different states depending on parameters passed in, so the iframe won't be displayed within itself. ...

Facebook App, Iframe Worries (URL problem)

I'm making an app on facebook and have chosen iframe instead of FBML. The problem i'm facing is linking to various other pages of the app. Suppose that I've hosted my app here http://fbapp.mysite.com and I want to link http://fbapp.mysite.com/page1, how should I do that inside the iframe? Linking directly to fbapp.mysite.com/page1 just r...

Update iframe body color after load

I have a page ,page1.html that loads page2.html via an iframe . I need to change the body color of the iframe page (page2.html) to override the CSS style that's loaded on page2.html. (both pages are on same domain). How can that be updated via Javascript ? ...

Page reloading and malformed HTML problems in a XULRunner based app.

Hello, I am writing an application on XULRunner that displays HTML pages from the web: I have a very simple XUL file with a in which is just a filling the window and loading a local HTML file. In my HTML, I have an iframe to load content. What's cool with XULRunner is that I can access the content of the iframe for many things (displ...