Tagged Questions
0
votes
2answers
31 views
Update parent from iframe using jquery
I have this minimal test case
a.html
<!DOCTYPE html>
<html>
<body>
<input type="text" id="myinput">
<iframe id="frame" src="b.html" style="width:100%;height:100%" ...
0
votes
0answers
16 views
Using postMessage to resize iFrame height
could anyone tell me how to make this postMessage thing work?
I have this page: http://thc-racing.ucoz.com/index/forum/0-14
and i want the iframe height to change once content changes, been looking ...
-1
votes
0answers
19 views
HTML5 iframe sandbox event on break
I'm building something and need to detect frame breakers. So far I've been able to stop them with the sandbox attribute, but I can't figure out how to detect that so I can log it.
It's only going to ...
0
votes
1answer
27 views
Load external Web Page with jQuery
I was wondering what a good way to load an external web page (same server) would be. I have tried .load() and .get() however, The external page has a php script that spits out information every few ...
-2
votes
4answers
51 views
Jquery fadeout of item, item doesn't reappear
I have my main page that contains a DIV that in turn contains an IFRAME. When the user clicks the OK button in the IFRAME, I call a function in the parent page that fades out the div with a Jquery ...
0
votes
1answer
44 views
Getting height of an iframe
I'm building a dialog whose content is an iframe. When the dialog opens I have the following code that I pulled from various sources in attempting to make this work:
var iframeDOM = ...
0
votes
1answer
19 views
Secure page in frame doesn't see parent page
I have this page http://domain.com
<html>
<div id="anyDiv" style="display:none">Hello</div>
<iframe src="https://domain.com/iframe"></iframe>
</html>
In iframe ...
0
votes
0answers
5 views
Jquery azoff overscroll and iframe?
I'm trying to add Azzof ovescroll jquery plugin to an iframe but id does not seems that it works, and I don't know why because I don't have any errors in console.
I have my example in jsfiddle: ...
0
votes
1answer
31 views
How to modify css inside iframe by jquery or other type?
I want to use iframe to display advertize of any product. this iframe width design(css) is not suitable according to my webpage so i want change css inside iframe. i tried some asked question solution ...
0
votes
1answer
31 views
Wait for a JS call to PHP to finish before continuing
I have a registration form in an iFrame on my main window. When the user submits the form, a PHP is called to insert the data in the database. Once this is done, I call a function in the parent window ...
0
votes
0answers
24 views
iframe onclick not working in chrome but working fine in firefox
document.getElementById(id).contentWindow.document.addEventListener("click", function() {
alert("in contentWindow event")}, false);
});
where id is id of my iframe. Alert is coming in firefox ...
0
votes
2answers
36 views
Injecting jQuery or any JS library into an iFrame [on hold]
I have the following code which basically tries to execute HTML, CSS and jQuery into an iFrame. Here's the code in jsBin...
http://jsbin.com/iFoZAdU/1/edit
What I want to achieve is:
...
0
votes
0answers
16 views
Is it possible to use AJAX with iframes and FormData with colorbox
I'm currently using colorbox however i want an upload file button to appear in the colorbox popup box. However when i have loaded the colorbox and i click submit the ajax doesn't seem to work at all. ...
1
vote
1answer
26 views
How to access the variable in iframe which contain another html?
I'm using iframe test in my test.html. Another test2.html file is loaded in that iframe test, i need to access the variable's which is used in the test2.html. Is there any way to access that in the ...
0
votes
0answers
17 views
html2canvas - no screenshot for iframe
I have a task where i need to load a URL (e.g www.yahoo.com) , on my webpage, and take screenshot. I am using html2canvas for screenshot and appending it to the body of the page.
The page specified ...