iframe

Selecting a form which is in an iframe using jQuery

I have a form inside an iframe which is inside a jQuery UI dialog box. The form contains a file input type. The jQuery UI dialog contains an Upload button. When this button is clicked, I would like to programmatically call the submit method. My question is how I could select the form which is in a iframe using jQuery. The following ...

How do I make my DIV ontop of a flash object inside an iFrame I don't control?

Basically, I have a DIV, which I've set to z-index: 100. I have an iframe which I set to z-index: 0. My 100 div is ontop of the frame on a normal webpage, but I have to load a flash page in the frame. Unfortunately the flash in the frame shows overtop of my 100 DIV. I can't set the z-index of the flash object because I don't control that...

is there a z-index equivalent for frames?

Hey, Here's my problem: I have two frames, one on top of the other. The top one contains the menu and the drop-down part of the menu gets covered by the lower frame. How would I go about fixing this? Side question: should I use frames or iframes? Thanks in advance, Matt ...

"Access is denied" iFrame IE

Possible Duplicate: Permission Denied IE iFrame I have an iframe in b.com which attempts to grab the jQuery library from a.com [my website]. Whenever it does this I get the "Access is Denied" error in both IE7 and IE8. I have checked out Fiddler and it doesnt show that the script is getting blocked - but IE does errors with "...

Facebook FBML and frame redirect

I have, what is probably a simple flash question. I have a flash countdown clock I am using in an Iframe of a facebook app. At the end of the countdown it fires this off myFlipCountDownClock.onFinish = function() { }; And I can add getURL or whatever. My problem is I need to fire off some facebook specific code. This being This d...

javascript (greasemonkey) how to access a newly created iframe

hi there, i have this website, by clicking on certain link on the website an iframe will be created within the same window. my question, just wondering how to access this iframe? i tried document.getElementById() return null tried window.frames not there Thanks ...

Passing large parameters to an iframe

Hi all, I have an iframe which to i'd like to pass parameters to. So I do this (ldots means and so on) my_iframe.src = "myaction.do?param1=value1&param2=value2&..." My current problem is that when the query string passes about 2100 characters, the request is not sent. Background on this is that one of the values passed can be about...

TinyMce imagemanager won't generate image path when used with an iframe

I have successfully setup tinymce to work on a page within an iframe. Everything works perfectly. However, when you use imagemanager to pick an image to be inserted or replaced in the editor it will not copy the path(and filename) of the image to the "Image URL" input in the "Insert/edit image" box. The box will either remain empty or k...

Detect mouse over iframe?

I'd like call a function every time a user drags their mouse over an iframe (which points to a different domain). Is this possible? ...

How do I resolve an error with an iframe?

I have a page on my site that uses an iframe to show a webcam picture from one of those ddns sites that facilitates web access to webcams. It works fine in all browsers, but in IE 8 (I haven't tried other versions of IE yet), I get that annoying little exclamation mark in the lower left corner of the browser, and when I open it up it sa...

Facebook Invitations Do not reach Facebook Friends | AS3 | IFrame | FBML | FLEX | FLASH

Thank you for bothering and taking the time to read!!! So, I have an xd_receiver.htm file in place within the same directory as the index.htm. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Cross-Domain Recei...

Iframe permission denied error when developing locally: what are my options?

Here's what's going on: I have an application A hosted on a.mycompany.com and an application B hosted on b.mycompany.com Application A contains an iframe containing a page contained in the application B. <!-- In A's index.html: --> <iframe src="http://b.mycompany.com/something.html" > I need to have either the parent talk to the ifr...

i have some text following the mouse, i need to change that to an i frame, how do i do this?

$(document).ready(function () { //create the div var div = $("<div></div>").css("position", "absolute").text("a short message").appendTo("body"); //attach the mousemove event $("body").bind('mousemove', function(evt) { div.css({ "left": evt.pageX + "px", "top": evt.pageY + "px" }); }); }); what im trying to ...

Why am I unable to tie into an iframe content changing event?

I am having an issue with jQuery, an iframe, and a third party component. (Richer Components rich text box, I suggest not using their product as they do not respond to issues on their forums, or at least have not for at least 5 years.) I am trying to have when a user types into a third party control an event fires. The control is a ric...

how can use iframe in html

what is iframe and how can we use it in html..... ...

PHP "header (location)" isnide IFRAME, to load in _top location?

Hi Webmasters. I have a simple form which is inside IFRAME. When user click on SUBMIT, it redirects to a specific page on my server. The function I use for the redirect is header ('Location: mypage2.html'); exit (); But I want the new page to open in _top location, not inside the same IFRAME that I use. How can I tell the browser t...

Redirecting to parentpage using an Iframe with a form

Working in ASP.NET MVC 2. I have a page that opens a Iframe. On that IFrame I have a form. When I click submit I redirect to a controller. How can I show the result of that controller on the parent page and not in the IFrame? ...

CSS of iFramed page not being applied properly

My company has purchased a third-party package with a built-in customer facing web portal, and I'm being tasked with integrating it into our site. Unfortunately, the web portal does not look great, and we have absolutely no control over how it looks (other than asking the vendor for changes - $$). In order to make it look somewhat like...

Firefox slow on page with many iframe

I have about 10+ iframes in a page, and it's slowing down Firefox3.6.x substantially. Is there anything I can do about this? i.e. modify the DOM somehow, or suspending certain events etc etc ? ...

Javascript back button for iframe parent window

I have some pages with iframes in them. I want to add a link/button inside the iframe, to make the browser go back one page in history. But I want the PARENT to go back, not the iframe itself. I originally had this, which makes the iframe page go back (if it exists): <a href="javascript:history.back()">&laquo; Go back</a> I've tried ...