An `iframe` is an HTML element that creates an "inline frame" within a document.
0
votes
0answers
3 views
onYouTubeIframeAPIReady inside jQuery(document).ready
What I want to do is:
1) Wait for the document to render
2) When youtube iframe_api is ready, initialize my custom function and pass the YT object to it so I can build the player from inside.
This ...
1
vote
0answers
20 views
How can I load the JavaScript of a different domain within an iframe?
For example, when loading this page in an iframe ( http://bleacherreport.com/articles/1707335-5-green-bay-packer-players-who-will-surprise-in-training-camp ), the slideshow buttons will no longer work ...
1
vote
1answer
8 views
How to redirect to parent window after logging in from iframe window?
I am using an Iframe window to display the login form of another website. And what I want is the user should go to that particular site after logging in(even if logging in fails, any click on any link ...
0
votes
1answer
25 views
How to view an image outside of web root?
I have a .png that I want to embed on a particular page. This .png is outside of the web root, but we have a module in our system that allows users to view that image on a separate page. I found that ...
0
votes
0answers
10 views
How to redirect a google blog page…unless it is being contained in an iframe?
So I have a google blog page which I would like to redirect to my page which I have an iframe of my google blog page. When I put the following code in, it redirects to my page containing the iframe:
...
0
votes
1answer
8 views
IndexedDB database of main window is different from an iframe content's one?
I have an IndexedDB database with html documents stored inside as blobs and a webapp using an iframe to visualize these documents.
My problem is : I want to get the store of the database where are ...
1
vote
1answer
25 views
Only pass “&” through URL without “?”
I'm working on a project which passes a variable into a iFrame with this code:
jQuery(function() {
var search = window.location.search;
jQuery(".iframe-wrapper").attr("src", ...
0
votes
1answer
13 views
Cross domain/protocol iframe with access to both servers and modern features
I am trying to embed an iframe into an https site. The site being embedded can only use the http protocol.
I'm getting a console error that the frame was blocked because "The frame requesting access ...
0
votes
0answers
15 views
Phonegap iOS Iframe access
Accessing an iframe in iOS from PhoneGap
I have a hard time getting PhoneGap(2.9.0) to access an iframe on iOS (6.0.1).
The index.html of the application consists of an iframe and a function to ...
0
votes
1answer
8 views
Iframe i need to adjust the scrolling bars
Hello everyone i got an iframe problem and i guess its not rare ok firstly i dont want to resize the window i just want to have an iframe 350x500 and i want the page i call to center atm it only shows ...
0
votes
1answer
8 views
How to bind CSS/JS when displaying an IndexedDB blob in iframe using “src” attribute and url?
I'm currently setting up a web page that use IndexedDB to display html documents in an iframe in this page. This documents are already in the database as blobs. Also, I want to have this web page ...
0
votes
0answers
10 views
print multiple frames at once ( javascript )
I have 4 iframes with 4 different pages from my own domain and use this to print them: window.frames['iframe1'].focus();
window.frames['iframe1'].print();
So there are 4 different print jobs one after ...
0
votes
0answers
9 views
Track page view only on form POST
My web site uses a DoubleClick iframe for tracking (I have no control of whether to use an iframe). The suggested code looks like this:
<script type="text/javascript">
var axel = Math.random() ...
0
votes
1answer
7 views
Two iFrames One scroll
I have 2 iframes one on top of each other.
each iframe loads a different page.
iframe 1 is the header
iframe 2 is the content
desire
behave as one page, so when you scroll the entire page ...
0
votes
2answers
52 views
How to load into iframe with jQuery
I am looking to load javascript files into an iframe with jQuery, but it seems the way I am doing it, inspecting the DOM they are there, but they act as if they are in the parent. Here is some of the ...