An `iframe` is an HTML element that creates an "inline frame" within a document.

learn more… | top users | synonyms (1)

0
votes
2answers
50 views

Set the Iframe width and height to 100% as per page size Not working

I have tried following code. But it is not showing the iframe in proper way. Height and width of Iframe is very small. Iframe should take the height and width as per page size. <html ...
0
votes
0answers
18 views

Replacing frames in an existing web app

Situation: We have an Intranet webportal that has been developed and has been handed over to me. The portal is in classic ASP, and involves a lot of work over the last 5-8 years. migrating to .Net ...
-2
votes
2answers
32 views

Calling function in javascript to change iframe src [closed]

So a script calls this function atomSpeak('Phrase goes here') Which triggers this script: <script> function atomSpeak(phrase) { { var q = getValue("q"); // getValue comes from another ...
6
votes
5answers
167 views

How to set HTML content into an iframe in IE8, IE9

I have a HTML string <html> <body>Hello world</body> </html> and I want to set it to an iframe with JavaScript. I am trying to set the HTML like this: ...
2
votes
0answers
47 views

Issues with using an iframe to show chrome extension UI on a web page?

I am developing a chrome extension that is meant to work on all web pages. As part of its functionality, it needs to show a UI on any given page. Currently, to do this, I append a div (containing ...
0
votes
1answer
19 views

Adamant Iframe width

I am developing a webpage which carries an iframe inside a div. I cannot make the iframe strech across full width of its parent div even after making width 100% in CSS. I am doing something wrong. ...
0
votes
0answers
22 views

Floating iFrame Content

I have a page with an iframe inside it. And inside the iframe there are a floating sidebar element which the css are fixed upon scroll. Is it possible for the floating element inside the iframe keep ...
0
votes
1answer
23 views

problems with paste event and iframe on internet explorer 7

I've got a WYSIWYG editor, based on JqueryRTE (code.google.com/p/lwrte), which uses iframe as a main object and enables a few means of formatting. Still I need to sanitize pasted text, because users ...
0
votes
0answers
37 views

Drag iframe over applet causes flicker of iframe's HTML region

I have an HTML page that contains an applet, and an iframe overlapping some region on that applet. When I re-position/drag overlapping iframe, then paint() is called on background applet that causes ...
1
vote
0answers
15 views

Copy canvas element from ThinVNC viewer as iFrame

I want to copy canvas element from within iFrame that shows virtual machine content. I saw that there was a lot of Q&A about "clone canvas from iFrame". Unfortunately, I'm not familiar with ...
0
votes
1answer
7 views

rails adding a iframe from youtube in to a string

Am trying to add a youtube embedment to a string(video.link) but it crashs my app am using redCloth to handle the html output. Not sure what to do with the passenger error, can anyone help? error ...
18
votes
6answers
10k views

Is there a way to have content from an IFRAME overflow onto the parent frame?

I have a UI widget that needs to be put in an IFRAME both for performance reasons and so we can syndicate it out to affiliate sites easily. The UI for the widget includes tool-tips that display over ...
0
votes
0answers
48 views

Custom Google Map in Wordpress for sharing with own map markers

everyone knows the embed function of an Google Map, offered in the Google Maps website. You find this function on Google Maps at the left of the map behind the anchor. This is a HTML code for ...
1
vote
2answers
40 views

Allow a page to be iframed, but disallow it displaying on it's own

This is a follow up to This Question about controlling on what site(s) a page can be iframed. I would like to use the accepted answer, but when a link inside the iframe is clicked, the referrer is ...
0
votes
1answer
42 views

Close Iframe With Jquery?

I know there are a lots of questions like this, but we're already knew that each cases are not like each other. So, this is my case : HTML OUTPUT: PAGE 1 <div id="login-embedded" style="height: ...
0
votes
1answer
31 views

Yotube video quality change using CSS media queries

I'm trying to use iframe embedding Youtube video on a responsive design webpage. How can I let the widest page comes with heigher resolution video (with parameter &vq=hd1080 )? Now I have ...
0
votes
1answer
18 views

Scrolling to a particular ID within an iframe without moving its parent

I needed to be able to load a particular page in an iframe on demand, so I used a simple wrapper: function updateFrame(url) { frames[0].location = url; } Then I was asked to load the page to a ...
0
votes
1answer
45 views

Is it possible to write something in a iframe when a button outside the iframe is clicked?

I am coding some kind of display made of an iframe. When I click a button, which is outside the iframe, it should right something down on the iframe. Is it possible? <iframe src = "display.html" ...
6
votes
9answers
22k views

FancyBox iframe returns parent.$ as undefined (using WordPress)

I'm trying to close FancyBox from within the iframe, but parent.$ is always undefined. This is my iframe JavaScript: <script type='text/javascript' ...
0
votes
0answers
25 views

iframe covering an object tag and transparent background

The page has an object tag, I would like to cover the object tag iframe and transparent background. iframe Add property allowTransparency = "true" and the target page body tag add background-color: ...
0
votes
2answers
31 views

Open my form results in Iframe on another page

Hi I have page "A" with small form search for Domains and page "B" with my site design and layouts and one "ifarme" named "domains" now what I need is when the users search for domains they will see ...
1
vote
1answer
71 views

How to associate an iframe button click to a window.parent with jQuery?

I know there are a lot of simular topics on stackoverflow to this, but I have not found one that is specific to my case. I have an iframe on my same domain, that has a button inside of it. I have ...
2
votes
3answers
2k views

How to detect if the iframe is loaded?

I am trying to check if the iframe has loaded after user clicks a button. I have $('#MainPopupIframe').load(function(){ console.log('laod the iframe') //the console won't show anything even ...
0
votes
0answers
21 views

Two clicks at back button are necessary to trigger popstate/statechange event

I have a page which contains an iframe. The iframe can take user's input (via button click or menu selection) and display content accordingly. What I need is, when a user manipulates the iframe, the ...
2
votes
1answer
3k views

displaying iframe in sencha touch app with scrolling

I'm trying to load an outside webpage in an iframe in my sencha touch app. The webpage is of dynamic height so I need the iframe to be scrollable within the sencha touch app. I have been able to get ...
3
votes
1answer
175 views

Google analytics results differ between iframe and parent

We are having trouble with analytics results not matching up between the parent page and iframe child. We're aware that tracking shouldn't be about solid numbers, but our differences are too big to ...
4
votes
1answer
106 views

Is there a way to pushState() the parent window in facebook canvas?

I want my facebook canvas app to be able to update the address bar URL when changing context. So, for example, if my app's home URL is https://apps.facebook.com/myapp/, and the user clicks on some ...
-1
votes
0answers
15 views

triggeredAutocomplete and iframe

i realy realy need your help. I've downloads this script: http://www.hawkee.com/snippet/9391/ But i need to use this script with iframe with designMode on: function load() { ...
-2
votes
0answers
34 views

How to break a iframe breaker?

Hello i have a web page where iframe is there in it . It has a site in it . and when redirected it is not redirecting in the same iframe. I need it to redirect to the iframe , not other window. How ...
0
votes
2answers
40 views

iframe Content breaks in IE 9

I am using an iframe to include a list of content. Attached is an image of what I see in IE9 only. The spacing between images and name is off and are overlapping. I have tried multiple ways to fix ...
1
vote
1answer
2k views

Submitting HTTPS over an iframe in IE problem

I'm working on a script to automatically sign you in to basecamp for a project... so far i have come up with the following as something simple just a form you submit which posts to an iframe: ...
0
votes
1answer
14 views

how to fix a height & width of div by css

I want to know if i have a iframe window and i am opening it in a Div. but i want to show only a fixed area of that iframe in the div how it is possible with css. See, I have a iframe window ...
-1
votes
0answers
29 views

onmouseover show image in a iframe or javascript frame in a specific location or coordinates [closed]

I am running website. having a good traffic. i have started banner ads services for other website owners to place their banner ads in a iframe by using a ad rotator script. I want to know is it ...
10
votes
3answers
4k views

Why are iframes considered dangerous and a security risk?

Why are iframes considered dangerous and a security risk? Can someone describe an example of a case where it can be used maliciously?
2
votes
0answers
38 views

Get change event of iframe content?

I have a div with an iframe which is showing embedded google map, the map can move, I want to get an event after any change in map image (any navigation) on iframe. can I get it? Thanks P.S.: I use ...
0
votes
0answers
36 views

Serving pdf in iframe giving Cross Domain Error

im serving a pdf file in my application in an iframe through an ashx handler, the pdf is on my domain but when i try to access the elements of the iframe like ...
0
votes
0answers
17 views

Iframe wordpress chat widget into PHPBB3

I have a chat plugin which I am using on our site which I would like to use on our PHPBB3 forums. The only way I can think of it working is via an iframe but I am unsure how or if you can iframe the ...
0
votes
2answers
4k views

TypeError: Result of expression 'printWindow' [undefined] is not an object

I'm trying to create hidden iframes in my page dynamically to load 3 other pages so that i can grab all the HTML and combine them into 1 in a new window. However i'm stuck at this. tHe frames are ...
0
votes
0answers
19 views

Droppable inside iframe with scrollable div

When you have a draggable outside an iFrame and a droppable inside an iFrame, when using the iframeFix option it works. But when you introduce an scrollable div around the iframe the coordinates of ...
0
votes
0answers
11 views

What influences the time an iframe is requested from browser

Can someone explain what influences the order of requests before an iframe is loaded? My observation on one of our websites (springerprofessional.de) seems to suggest that some script files are ...
0
votes
1answer
268 views

Looking for script to delete iframe malware from linux server

I'm looking for a script to delete the following iframe malware from my linux server: <iframe width="1px" height="1px" src="http://ishigo.sytes.net/openstat/appropriate/promise-ourselves.php" ...
0
votes
2answers
29 views

Prevent iframe from rendering if source server is down

We would like to offer a widget with content from our website to third-party websites in the form of an iframe. <iframe src="http://oursite.com/iframe"> </iframe> In the occasion that ...
0
votes
1answer
260 views

Div over applet

i try to make a div over applet and works fine in firefox, chrome and safari on MAC. But not on Windows What am I doing wrong? I have searched for "div over applet" and found a solution with iframe, ...
1
vote
0answers
18 views

I'm trying to have a flash embed as well as an iframe embed be on the same line

Alright, so I want to embed my Twitch.TV video feed as well as the chat embed side by side. Another thing I'm trying to do is make it so the video automatically re-sizes itself based on the browser ...
0
votes
2answers
3k views

Transparent background for Facebook “like” button

I need the background for the Facebook "like" button to be transparent. I've achieved this one time but I don't remember how I did it. allowTransparency="true" in the iframe version of the button ...
1
vote
2answers
93 views

postMessage Source IFrame

I'm working on a website with cross-domain iframes that are resized to the correct height using postMessage. The only problem I'm having is identifying which iframe has which height. The way I've ...
0
votes
1answer
45 views

selenium webdriver accepting Alert fired from inside an iframe with IEDriver won't work. Any work arounds?

I've got an application with several iframes. Webdriver handles the Alerts fine when they are fired in the root context but doesn't see to find alerts that are fired from inside an iFrame. Well it ...
1
vote
0answers
59 views

How can I prevent an iframe from trying to use the javascript of the parent page?

I'm trying to embed this gallery (warning, nude art content) in to a webpage using frames. The problem that I have is that I have a dropdown menu that uses javascript to fade the pages in and ...
1
vote
4answers
436 views

Accessing JavaScript variable in an iframe, from the parent window on same domain

I am fairly new to JavaScript and I am trying to get value of a variable from an embedded iframe. I have resorted to basic testing to make sure I am getting the method right... I have tried the ...
0
votes
0answers
17 views

iframe causing other elements to disappear :-(

Guys I am not a developer but have always found this site to find answers. This is my first question so please be gentle if i sound like a total nutter... please check the top of my site ...

1 3 4 5 6 7 205