An `iframe` is an HTML element that creates an "inline frame" within a document.
0
votes
0answers
2 views
iFrame within Fancybox not display html in full page
I have a problem that html page not displayed in full page consistently. Need to click toggle size button to expand the html page. Any problem with the code as attached below ?
Any method to ensure ...
0
votes
2answers
10 views
Create an address bar to direct an iframe?
Well, I'm trying to dart back and forth around the internet, in a fashion similar to this: http://jsfiddle.net/Muimi/gm7gv/. Unfortunately, my code doesn't work. What is happening is that the page ...
0
votes
1answer
12 views
Curious difference in behavior between Chrome & Safari extensions w/iFrames
I've developed extensions in Chrome and Safari, and I've noticed curious differences in behavior in regards to iFrames. The extension I've developed injects content scripts into all sites matching the ...
0
votes
1answer
23 views
Keeping a link inside a iframe
I am trying to use Iframes and or PHP to hide a link that is dynamically created. The link is being created in php. But when I try to access that link from within an iframe it takes over the whole ...
0
votes
0answers
19 views
Matching iFrame URL
What I want my code to do, is check if the url in the iframe matches an url that I got from my mysql database. If that's true, the whole page (not the iframe) should go to finished.php and if that's ...
0
votes
1answer
16 views
How do I navigate through a playlist using the Youtube Javascript API?
Once I've created a playlist using the loadPlaylist method which is just an array of video urls, I want to be able to navigate to through the playlist.
The function described in the documention ...
0
votes
0answers
19 views
jQuery File Upload plug-in does not work on IE7/8/9 even with iframe transport
I've been searching for a solution to make the jQuery File Upload plug-in by blueimp work in IE as well, but everything that I have found was of no good use. Iframe transport is already included and ...
0
votes
0answers
30 views
How to get full url path before I get the HTML from iframe
After some trying I got the function which return me the html I select in iframe, the problem is it returns me the href attributes with local path, How can I get the full url path/absolute path before ...
0
votes
1answer
17 views
Remove external html tags when copying into an iframe text editor
I have made my custom iframe based text editor from scratch. I am looking to implement two features now. Here is the iframe :
<div id="iframe-container" style="height: 200px; width : 450px ; ...
0
votes
0answers
9 views
Facebook Welcome Page not displaying in Internet Explorer
I have created a facebook welcome and used the website app to point to http://nsdynamics.co.uk/unixfb/ubw
The facebook URL is https://www.facebook.com/csoundsolutions?sk=app_190322544333196
When users ...
1
vote
0answers
25 views
Diffifcult in finding two different iframes with same tag
I'm trying to find the XPath which is given within iframe with HTML/body tag.
There are two comment boxes with the same tags in my application. I need to find unique id for this.
<tbody>
...
0
votes
1answer
19 views
Browser Javascript security warnings and errors
I have an iFrame (https://example.com/iframe) that runs within http and https protocols (ie. http://example.com and https://example.com/login).
This iFrame has a conditional that sometimes forces a ...
0
votes
2answers
20 views
Javascript change text in parent from iframe
I have the following variable in a script in a webpage :
var isRedirect = true;
I also have an iframe. How can I change the isredirect value from true to false from within the iframe? var ...
0
votes
2answers
17 views
iFrame Security Risks from Embedding by Hacker
Within my app (http://www.example.com) I am running an iFrame (https://www.example.com/iframe-application).
The main page (www.example.com) only renders custom data based on cookies set by the ...
0
votes
2answers
18 views
Attaching events to images inside iframe
I have an iframe (with id=iframe) and I am trying to attach onClick event to each one. The iframe is within the domain.
$("#iframe").contents().find('img').each(function () {
$(this).on('click', ...