iframe

how can i interset a post event from an iframe to show loading msg with .net update panel ajax controll?

I have a page which has an iframe that calls a page I cant modify its content because its an external link, that page does a post to mine and i want to intersect that event and treat it with an ajax update panel on asp.net 3.5 ...

Is it possible to overlay HTML over XBAP?

Is it possible to overlay HTML elements over XBAP? I have an XBAP application in an iframe on a webpage, and I'm trying to overlay HTML elements over it. I can easily do it over Flash, but I have yet to figure out how to do it over XBAP. ...

Auto-resize iframe based on content height

I have a site on my server that is pulling in an iframe from an external site in which I do not have access. I want the iframe to resize the height based on the content that is being pulled in so the page as a whole looks like a single page. *I do not need to know how to get rid of the scroll bars. Does anyone have any ideas? Thanks ...

Facebook Open Invite Friends Interface

Hello! How can I open the Multi Friend selector from a Flex Application inside a Facebook IFrame please? The interface I am looking for is this: ...

CSS overlay problems, showing a splash page over flash element

Check out the link below, as you can see my overlay is hidden behind the flash element. However, the blue bar with the 'Continue' button appears above everything. Does anyone know what CSS changes I need to make so the overlay will appear above everything below it? The background loads an iframe. Thanks. http://honr.it/s4j I can't ...

Storing Iframe src as a variable

In the options page of my Google chrome extension, the user defines a URL destination which saves to LocalStorage["dest"] Can't get the code to work in the popup.html file though <script type="text/javascript"> url = localStorage["dest"]; document.getElementById('site').src = url; </script> <iframe id="site"> </iframe> What am ...

How to open iPhone Gmail in PC browsers?

I want to load gmail inside an iframe. It is small so that a iphone version gmail would be more suitable. However google change the address automatically to the PC version. Could anyone help? Is there any permanent address for the iphone gmail? PS. i need to use Chrome. Thanks!! ...

how to get selected text from iframe with javascript ?

how to get selected text from iframe with javascript ? ...

how to iframe gmail

as i know that gmail might put some security things to prevent this. but i really need this. the 2 following doesn't work <object type='text/html' data='http://mail.google.com/'&gt;&lt;/object&gt; <iframe src='http://mail.google.com/' frameborder=0 style='width:322px; height:480px;'></iframe> any other ways? thanks!!! ...

Understanding 3rd party iframes security?

Facebook and others offer little iframe snipplets that I can put in my site. Example: <iframe src="http://www.facebook.com/widgets/like.php?href=http://example.com" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe> What I'd like to know is, if I put this code inside my side, could ...

Restrict download of the video files stored in iFrame

I was wondering if it is possible to restrict download of the video stored in the iframe. We have a website with some training videos and even thou we encrypt file names before they are loaded to flash player - this still doesn't prevent anyone to look at the source of the page and simply copy the link and download the file. I thought ...

iFrames - how do search engines read them?

Hey, I know that search engines base part of the calculation of rankings on how many other sites point to a specific site, so I was just wondering, given the following situation: http://siteA/page.aspx contains an iFrame. This iFrame points to http://siteB/script.aspx?url=http://siteA/page.aspx. http://siteB/script.aspx generates a li...

Disable Cookies Inside A Frame/Iframe

Hi! Is there any way to programatically disable cookies being created by a page displayed inside of a frame/iframe? Or to generalise further, is it possible to programatically disable javascript running on such a page? Thanks, DLiKS ...

Allowing http iframe to call javascript on https parent frame

I have an https page (https://example.com/main.php) that has an iframe with a non-https source (http://example.com/inner.php). Both files are on the same server - just one is accessed with https and the other is not. I need the non-https page to be able to execute javascript on the https main.php page using code such as parent.myfunction...

Iframe default height

Why does iframe have a default height of some 100px when the html content inside has only 20px? You can view an example here: http://www.tulumarka.com/galerija/28497/after-beach-party---02072010papaya/?pid=418319 Below the thumbnails there are two iframes that push that content below them but shouldn't do that cause they have no conten...

IFrame Comet response contains no data

Hi. I'm experimenting with Comet and I'm stuck with implementing it via a hidden IFrame ("forever frame". This is my index.html: <!DOCTYPE HTML> <html> <head> <script type="text/javascript"> cometResponse = function() { var debugOut = document.getElementById('debugOutput'); return function(response) { ...

Iframe issue in ie6 and ie7

inside the iframe the data goes over the scrollbar when I scroll.I want the scrollbars but the data shouldn't show over the scroll bar vertically and horizontally. can anyone give me a solution. ...

Is there a setting in FireFox to allow the parent document access to the DOM of an IFRAME on another domain?

Notice how Firebug can access the DOM of cross domain iframes and even allow you to modify them? I'm wondering if there is an firefox addon extension or a config setting that will allow a page on our intranet to do this. Longer explanation: I have a two "kiosks" in our reception area that the public can use. As we're running in kiosk m...

Should I load javascript in an IFrame embedded in an ASP.NET page?

Is the best approach to loading javascript files to put them in an IFrame and then embed the same in asp.net pages? I have read somewhere that this will help to boost page-loading times. ...

Call child iframe method from Parent aspx page

Hello, I've created one aspx page Default.aspx. It contains iframe with child.aspx. File Child.cs contains web methods which should be called by parent page. As I understand I need to receive the instance of Child class so then I'll be able to them call. How can I make this? I will be really appreciated for constructive solution, De...