iframe

IFRAME and conflicting absolute positions.

I would like to have an IFRAME dynamically sized using the following CSS: #myiframe { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } However, no browser seems to support this. In good browsers I could wrap the IFRAME in a DIV with the quoted CSS style and set the height & width of the IFRAME to 100%. ...

"Full screen" <iframe>

Hi! When I do this: <iframe src="mypage.html" style="border: 0; width: 100%; height: 100%">Your browser doesn't support iFrames.</iframe> It doesn´t go all the way... a +- 10px white "border" surrounds the iframe, how could I solve this? Thanks in advance!! TRufa EDIT: An image of the problem. maybe it is clarifying: http://pimo...

Adding a class to an element in an iframe using jQuery

<iframe src="/demo.php" id="source"></iframe> $('#source').delegate('*', 'hover', function() { $(this).addClass('hover'); }); $('#source').delegate('*', 'mouseout', function() { $(this).removeClass('hover'); }); $('#source').delegate('*', 'click', function() { alert($(this).html()); return false; }); Nothing hap...

Refresh iframe without refreshing the parent page

I have a page that constantly refreshes itself, I want to include the page into my main page. I am using an iframe to include the page to my main page, but every time the page in the iframe refreshes, it also refreshes my main page. How can I make the iframe refresh within its own frame and not affect my main page? Or is there a better...

Applying css to a table contained in an iframe

I will be serving 3rd party content to other sites through an iframe. The content will be presented in a table. Is there any way to use internal style sheets where the defintions are defined within the iframe?? I have read that internal style sheets should only be defined in the head section. External css is not an option. Here is a...

Permission issues checking if parent site is my parent domain within iframe

I've read several of the questions on this but am still a little confused. For example: OK, I can't post examples because of hyperlink limitations Here is my exact situation. I have a site at mydomain.com One of the pages has an iframe to another page at sub.mydomain.com I am trying to prepare an onload script that if the page is not ...

What should I use for session_id for a facebok IFrame app?

I'm working on an IFrame apps in Facebook. I use the PHP SDK provided in facebook. and I can login. However, what should I use for session id in PHP? should I use the default PHP session id (by the server)? or should I use the 'sig' that I got from the facebook SDK? (i.e. the $session = $facebook->getSession() , $session['sig'] ) I'm...

Getting iframe URL location from parent document

Hello, I have document with iframe. I have no problem setting iframe's location by using this: $('#iframe').attr('src', 'http://www.another-domain-site.com'); When user navigates a few pages in that iframe, then I want to get back URL where he ends up. But when the SRC attribute of the iframe never changes from what I initially have...

HTML: Getting document from IFrame.

Hello, I have this HTML code: <:html:> <:head:> <:script type="text/javascript":> function GetDoc(x) { return x.document || x.contentDocument || x.contentWindow.document; } function DoStuff() { var fr = document.all["myframe"]; while(fr.ariaBusy) { } var doc = GetDoc(fr); if ...

is it possible to prevent iframe content from escaping into main page using js ?

it is often done by code like this: if ( window.parent.frames.length>0 ) {} // check how many frames, if none do nothing else { window.location="[new destination]"; // else change the current location } But I want to prevent iframe content from knowing that it is on the iframe. I am writing a php proxy and content will be from t...

display visuallightbox jquery from iframe into parent

Hi all, On my website, I use the visuallightbox script. For info, see visuallightbox.com. My website contains an inframe, with the photo gallery. I want to display the photo's in the parent site instead of within the iframe. Then I have more space to use. the index.html contains a table which contains an iframe <td><iframe src="fotos....

IFrame Facebook App Bring User to the Top of the Page

Hey, I currently have an iframe for a facebook application and I am using FB.Canvas.setAutoResize(); to resize it properly. The problem is when a user scrolls down and clicks on one of the lower links, it does not a way to bring the user back to the top. Is there a function or way of bring a user back to the top of the page? ...

How to request different domain with Ajax in jQuery

I need to make a request to a different domain with Ajax in jQuery! Should I use iframe? Edited: On facebook.com working chat, with few different domain name? GET http:// www.facebook.com/ajax/presence/reconnect.php?__a=1&reason=6&iframe_loaded=false&post_form_id=23be2df75b74a0bcb61358814c56ba4f 200 OK GET http://0.50.channel.facebo...

Html code works in firefox,safari,chrome but not in ie why

<html> <body> <iframe width='500' height='500' frameborder='0' src='https://spreadsheets.google.com/ccc?key=0ApILEVmEy4YHdGRTdGZNTWd1cmc2c0RPN0dtSnZGWHc&amp;hl=en'&gt; </iframe> </body> </html> This Code dispays spreadsheet in some bowsers.In all bowsers it shows spreadsheets but ie it shows login page ...

Changing origin of an iFrame

Normally, if you load a doc into an iFrame by setting the src attribute and subsequently shorten the iFrame by decreasing the style's bottom parameter (for example), the text/etc in the document remains stationary on the screen (the absolute position of the document on the screen doesn't change), the bottom portion of the document is "cr...

Facebook sometimes fails to resize

For some reason the .autoresize(); fails and the iframe is left at its default size. I have seen it on some of the big apps like Mafia Wars even. Does anyone have a hack to fix this? I have to solutions, one is to reload the page (9 times out of 10 that fixes it), the other is to break out of the iframe. The problem is how can I detect t...

show iframe in Outlook add-on

Is it possible to develop an add-on to Outlook 2007 that will appear under the task box(or anywhere else). The add-on will be a simple iframe like the HTML tag. For example I want to show sport results site in this iframe. This this possible? How can you create a 'frame' for use by an Outlook add-on? ...

White space is still present around the iframe border even after afeter setting frameborder to 0

Hello, Even After setting the frameborder attribute in the iframe to 0 there is still some white space present around the iframe border (unlike the original url/link page). Is there any other way to get rid of the white space or some white must be presented around the iframe as it is within the webpage (or part of it) and it cannot be ...

prevent break out of iframe

I have a iframe in my webpage (facebook like etc.). can i prevent a break out from this iframe? I did not the iframe can data be read at my session / forms etc ...

Change iframe scrollbar height without changing iframe height

Hi SO! Is there any way to make an iframe's vertical scrollbar shorter than the iframe itself? For instance have a 500px high iframe with a 450px high scrollbar (but the scrollbar would still fully pan the iframe's content). (with Javascript, jQuery, or CSS) Thanks in advance! ...