Tagged Questions
3
votes
3answers
59 views
Trigger click on iframe
I'm aware of the same-origin policy... just getting that out of the way.
Anyway, I have a slideshow (slide.js) that has some embedded videos in it. When the user clicks the video, I want the ...
0
votes
1answer
31 views
document.getElementById(“myFrame”).contentWindow.myFrameFunction() won't work in Chrome 26.0.1410.64 m
It works in Firefox 20.0.1 and IE 10.0.9200.16442, but both input elements won't work in Chrome 26.0.1410.64 m
Chrome console showed this:
Uncaught TypeError: Property 'say' of object [object ...
-4
votes
0answers
14 views
Is there a technique for inserting data into an iFrame?
This company provides me a form which is embedded into HTML and served through an iFrame. I'd like there to be some text on the input fields by default.
this question is similar, but not the same, ...
0
votes
1answer
28 views
IE (or other) add input to web form and disable field
We use Cisco's Unified Attendant web interface at work and we have an occasional issue where the user sits down to answer calls for the company and out of habit sees the "extension" field and enters ...
1
vote
1answer
53 views
Iframe onload does not execute after file download?
I show a waiting dialog and then i create an iframe with the url of the file and append it to the document.
Neptune.ShowWaitingDialog();
iFrame.src = "ExportReportAllMediaDetailsCsv/?" + ...
1
vote
2answers
51 views
Make document.ready take into account elements from external iframe
The position I find my self in is the following. I have a jUerry plugin which needs to be nested within document.ready function. This plugin applies some styling to elements of the page. One of ...
2
votes
1answer
59 views
inject a javascript function into an Iframe
This link describes how to inject code from a script into an iframe:
function injectJS() {
var iFrameHead = window.frames["myiframe"].document.getElementsByTagName("head")[0];
var myscript = ...
4
votes
2answers
95 views
Inconsistent scrollwidth for iframe in FF/IE
I've got an iframe in my page, the contents of which are changed by clicking links in the main body of the page. I am trying to resize the width of the iframe to match the contents, like so:
...
1
vote
2answers
104 views
$(window).blur event affecting Iframe
I want to detect when the user leaves my page( e.g open a new tab) so I can stop a countdown. I did it using:
$(window).blur(function() {
//stop countdown
});
But I have an Iframe inside my page ...
2
votes
2answers
175 views
How to get a reference to an iframe's window object inside iframe's onload handler created from parent window
Before I paste any code, here's the scenario:
I have an HTML document that creates an empty iframe using JavaScript
The JavaScript creates a function and attaches a reference to that function to the ...
2
votes
1answer
75 views
Javascript: Can data be passed bi-directionally through an iframe?
For anyone with specific knowledge of it, this all relates to the WordPress "Theme Customizer", though that's not necessary to answer this.
Basically, I have a page (in PHP) which contains a ...
0
votes
1answer
112 views
Static iframe at bottom makes webpage unscrollable
Take a look at: http://jsfiddle.net/BUNVM/1/
<body>
This is a test page<br/>
(many more lines to make the page scrollable)
This is bottom of the test page<br/>
...
0
votes
0answers
29 views
jquery->iframe ignores script tags?
Because jquery UI draggable is interfering with the clicks I thought i'd put the video in an iframe. The video works however I notice the javascript isn't kicking in. It appears the script tag isn't ...
0
votes
1answer
89 views
Get current location/url of iframe and assign into a variable
I have some content hosted on my own servers which I'm displaying to the user dynamically. However the content is a few layers deep and I need the url/location of the iframe so I can assign it to a ...
0
votes
0answers
308 views
iframe auto height based on content not resize when the page contain DOM
iframe auto height based on content not resize when the page contain DOM
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = ...
0
votes
1answer
72 views
How to Remove tab stop from iframe?
How can I remove tab stop from iframe ? My iframe is in same domain.
I have tried following code:
var objIFrame = document.getElementById('my_iframe');
if (objIFrame != null) {
...
0
votes
3answers
109 views
Cannot get element by id or className
I have an iframe that contains several div and other elements. I would like set focus to one of the textbox out of several textboxes.
I used:
a = ...
1
vote
1answer
84 views
Get id of innerdiv in a iframe
I have a iframe that opens different page depending upon the items selected in a menu. Each page in a iframe contains div elements and tables.
My requirement is to set focus on the first div or table ...
0
votes
1answer
53 views
Detecting when an iframe is closing
We are using Salesforce and have embedded iframes that show content from another application we have developed. When the user is working on fields in our iframe and lose focus on them, the iframe ...
0
votes
0answers
49 views
Iframe AfterOnLoadLoading Loop shows only first iFrame
for domload performance im reaching to load my 2 ytb iframes through a loop after Onload, it works for the first one, console is not throwing errors, target divs are the 2 <div ...
8
votes
3answers
661 views
Can't access an about:blank iframe in IE after the document.domain changes
Does anyone know of any workarounds to creating an about:blank iframe on a page in IE when the document.domain has changed?
IE doesn't seem to allow access to empty/dynamic iframes after the ...
1
vote
2answers
119 views
How to access controls in an iframe using WatiN?
I am trying to access a checkbox within an iframe, using WatiN in C#.
The documentation suggests using this:
var frame = browser.Frame(frameId);
However, I have tried that format, like this:
var ...
0
votes
0answers
31 views
access to dom elements inside iframe [duplicate]
Possible Duplicate:
jQuery cross domain iframe scripting
I got an iframe that is calling an external url. At this point I'm working localhost.
<iframe id="iframeid" ...
1
vote
1answer
48 views
How to execute a script that containts a window.onload after it is injected into an iframe that lives on the same page
I am wondering how I can get a script that is inserted into an iframe to execute that contains a window.onload function. Because the iframe is already loaded, when I insert the script it is not ...
0
votes
0answers
59 views
What determines the DOM (“window” global) a JavaScript function sees?
Our web platform uses IFrames to host child windows in a desktop type setting. Because they're hosted on the same url, these DOMs can communicate with each other. However, I'm seeing strange cases ...
1
vote
1answer
46 views
How can I access to an iframe DOM?
I just want to access to the DOM in an iframe.
I can display in the Chrome console to the whole iframe definition with the code below :
$('document').ready(function(){
var toto = ...
0
votes
0answers
36 views
Cannot get the DOM from a specific iframe correctly with javascript
The goal of my program is to get the entire DOM from an iframe with the following code :
<iframe id="compare_package" ...></iframe>
<script language="javascript" ...
1
vote
2answers
137 views
Accessing IFrame elment from external page loaded inside iFrame
I would like access the IFrame element available in the main page from the IFrame source page using javascript
Here is my main Page
<html>
<body>
<IFrame id="page-container" ...
0
votes
1answer
145 views
Is there a way to detect the src the iframe is going to be redirected to before onload?
I have an iframe which I have no control of its content. Inside the iframe there will be redirection, instead of redirected in the top window (which I expect), the redirection always happen in the ...
0
votes
0answers
118 views
I have a non-working seamless iframe example (based on working talk/slides) which I want to get working
I've been following along with these slides: http://benvinegar.github.com/seamless-talk/ about a seamless iframe solution but it seems I'm unable to get them to work.
I have a plain HTML page loaded ...
2
votes
3answers
111 views
Iframe source with variable
have a couple of question:
<iframe src="/index.php"></iframe> is the same as HTMLIFrameElement ?
Why <iframe src="data:text/html;base64,aHR0cDovL2V4YW1wbGUuY29t" height=1280 ...
1
vote
1answer
142 views
“Copy as HTML” on nested IFrame elements in Chrome Inspector
In Chrome's web inspector, if you right-click a DOM element there's a "Copy as HTML" option that will normally give you an HTML string of that element and all its children. However, it doesn't seem to ...
0
votes
1answer
84 views
How to prevent document mouseout event from being triggered when the mouse enters an iframe?
I'm detecting if the mouse leaves the window as specified in this answer: How can I detect when the mouse leaves the window?.
The problem is that the browser triggers this event when the mouse enters ...
0
votes
1answer
70 views
range.insertNode(frag) on IE
I've been trying to implement a richtext editor using an iframe.
I've got a little help from the following for the script that inserts html at the cursor/selection:
from Insert html at cursor in a ...
1
vote
1answer
32 views
Can I detect any type of video playing in HTML using javascript and then pause all media using a function?
The application I am helping build is using videos embedded in an iframe from sites like youtube and 5min.com. Is there a way I can write a javascript function in the head of the HTML to detect any ...
0
votes
2answers
171 views
Insert HTML into another Web page on the fly
Let's say that I own 2 websites, A and B. I have access to the source code for website A but not for website B although it is developed by the same organization I work for, but by a different ...
0
votes
1answer
20 views
How do I get a reference to the iframe the document is loaded inside?
I need to get the DOM iframe element on a page from inside the iframe. Both documents are from the same domain, so don't worry about cross-origin restrictions. The document inside the iframe needs to ...
3
votes
1answer
46 views
Possible to reorder iframes in the dom?
I have a page that has several dynamically created iframes all in a div. I would like to dynamically reorder them within that div without refreshing them and/or losing their contentWindow.
If I try ...
1
vote
1answer
77 views
JavaScript parallel thread for DOM related processing
I have a resource consuming DOM (browser) related JavaScript process. When started it blocks the page (other DOM related processed). Is it possible to run this process in parallel asynchronously, and ...
2
votes
1answer
394 views
“Friendly iFrame” detection: How can I find my nested iframe in the top page?
I've come across a challenging iFrame detection problem in a "friendly iframe" environment. I need to identify from window.top which foreign domain iframe element in window.top.document loads inside ...
1
vote
1answer
446 views
Get Text from iframe
I have the following HTML
<iframe id ="myIframe">
#document
<head>...</head>
<body>Text I want to get is here</body>
</iframe>
I only know ...
0
votes
0answers
60 views
nested browsing context techniques?
I'm curious if anyone knows of any techniques to create a nested browsing context without using an iFrame? I was asked this, and immediately said, No, but now I'm second guessing myself - perhaps ...
0
votes
3answers
475 views
How to deal with setting dynamic iframe content dynamically
I have a page where I need to dynamically create an iframe and stick it into a div on the page. I create the iframe like this:
var frame = $('<iframe>')
.attr('id', 'myIframe')
...
1
vote
3answers
70 views
Accessing fields of an iframe with javascript
I read that the following should work in order to access the contents of an iframe with javascript:
document.getElementById("iframe_name").contentDocument
or
...
0
votes
2answers
131 views
JS - Resizing an Iframe based on it's content, without using timeout
I have an Iframe that communicate with it's parent (on other domain) using window.postMessage.
on the parent window I have a resize method that can be called from the iframe.
I want to add code to ...
2
votes
4answers
3k views
Why is iframe.contentWindow == null?
I use the following code to dynamically create an iframe.
var iframe_jquery = $("<iframe>")
.addClass("foo")
.appendTo(container); // container is a jQuery object containing a ...
0
votes
4answers
952 views
Retrieving a document's parent iframe in jQuery
I have a page with an iframe that has an html document within it. I need to access the iframe's id from that child document, and am having no luck getting at it with jQuery. The essential structure ...
-1
votes
1answer
130 views
How to prevent iFrame alert box
Is there a way to prevent alert box in iFrame even the domain in the iFrame was not mine?
0
votes
1answer
748 views
document.referrer isn't providing the original page url?
My script is running in an iframe in an iframe and I'm trying to get the root referrer (the url the iframe is on). It's not working. Here's the code:
<script type="text/javascript">
var ...
0
votes
1answer
206 views
Can't update iframe content with jquery
iframe is loaded dynamically into container div inside function.
With cc.text(content); I try to update #code content.
I check changed text in runtime, it's updated but on screen value remains the ...


