iframe

Why isn't my iframe editable when it is in a JQuery Dialog?

I'm trying to develop a simple management system for press releases for my company and one of the requirements for this system is that it has a wysiwyg interface for the content of the press release. The company has four websites and want to put all the press releases in one place and have the four sites pull the necessary data from ther...

How do you access the top level of the DOM from jQuery?

Trying to figure this out... I'm trying to accessthe top level of the dom from inside an iframe. How possible is this? ...

GWT adding an iframe wipes out history in firefox

Hi, In my app i create a PopUpPanel setting a Frame as the content widget. Unfortunately after this popup is clicked the history gets messed up in firefox and History.back() doesn't work. All works fine in IE. Any workarounds? ...

ThickBox with googlemaps

Hi, I was wondering if its possible to use the Google maps IFRAME code to show up in a thickbox jQuery lightbox. Any help I am trying to use the embeded url but no luck. has anybody seen a solution to this problem I have tried googling but to no avail. ...

iframe position from itself

Hello, how can I get iframe position using JS in the current iframe? This code works in IE var browser = navigator.appName; if (browser == "Microsoft Internet Explorer") { scrollX=self.screenLeft; //works scrollY=self.screenTop; //works strange } How to do it in Firefox? screenLeft, screenTop - undefined screenX, screenY - the...

Set input text inside iframe and submit

I'm trying to glue together two web services by passing a value from one to the other, unfortunately there's no API or clear way of hacking up the search query so I need to set the value of a input inside an iframe. Here's the markup for the horrible iframe. <form id="searchForm" method="post" action="/search/initialSearch"> ...

1x1 Iframes blockage

Hi, I have a project where I need to use a 1x1 iframe. It's on a different domain, proper usage though. My worries are that some browsers may block these iframes. I tested it on IE 6&8, FF 3.0, Chrome, Safari and they work. I know 1x1 iframes can also be used for bad, so maybe there are cases where they are blocked. Do you know addo...

access top window document from iframe

// if this code is inside iframe var topWindow = window.top; // then object topWindow.document is not accessible topWindow.document.getElementById("iframe_id")); // doesn't work ...

Iframe vs normal / ajax get request

I have a page that gathers environment status from a couple of IBM WebSphere servers using iframes similar to this: <iframe src="http://server:9060/ibm/console/status?text=true&amp;amp;type=server&amp;amp;node=NODE&amp;amp;name=ServerName_server_NODE"&gt;&lt;/iframe&gt; and it happily prints out "Started" or "Unavailable" etc. But if I...

What's the difference between IFrame and Frame?

Hello Looking at options of embedding the 3D Secure page inside my own Order form, I came across the following: "Some commerce sites will devote the full browser page to the authentication rather than using a frame (not necessarily an iFrame, which is a less secure object anyway)." from http://en.wikipedia.org/wiki/3-D_Secure Can som...

Why developers hate iframes?

While working with web developers, I always hear from them that using iframes is something we must avoid as we can, and some say it's something bad, annoying and makes a lot of problems. Also when i told my previous boss "not a developer" one day that i will use iframe, he looked at me as a bad developer :) What i want to know, does i...

How to show XSL-converted XML as a part of an HTML page?

Can I embed an XML file in HTML without using iFrames? I want to show XSL-transformed XML(which, is HTML as a result of transformation) as a part of my HTML document. Hope this makes it clearer. If my description of problem is unclear, please tell me and I will try to explain it more. ...

Can I track an IFRAME widget with Google Analytics?

We are going to launch JS based widgets which webmasters (any site) will be putting on their site by embedding a small code snippet like : <iframe src="SOURCE_PATH" frameborder="0" width="300px" height="150px" scrolling="no" id="cd_frame"></iframe> Inside the widget there are three links and we need to track how many clicks are happe...

Javascript - Get element from within an iFrame.

I am trying to get a div from within an iframe and print it on my page. Any Ideas ? ...

How to Load IFrame after PageLoad

I have one page .aspx, and in page , I have put an iframe on header page. Is it possible that iframe loads after page load finishes? ...

Cross site scripting?

Hi I am trying to grab a div from another website using JS. I have an iframe that loads a page from an external site, I want to grab a div that contains a list so I can style it myself and put it on my site. Any ideas, would be greatly appreciated. Thanks. ...

Why are iframes so slow?

Hello gurus, I have little bit longer question for you - but hope answer will be very simple :) Let's say I have very simple page with link and iframe (just for simple example). <body> <a href="test.html" target="mframe">open link></a> <iframe name="mframe" [params] /> </body> So when you click on the link it will load test....

iframe source physical file or object

Hi I want to pass an object as iframe src. Is it possible? like this StreamReader reader = new StreamReader(data); string s = reader.ReadToEnd(); myiframe.Attributes.Add("src", s); Thank you, Nagu ...

How to Force the page to be loaded only within an IFrame ?

Hi, I have a set of asp.net pages which I wish they should only be accessible or loaded when they are loaded from an IFrame. If an attempt is made to access the pages directly via browser address bar then the page should not be displayed at all or display the message to the user. I tried using cookies and sesions, but they are not that...

Access Iframe with Javascript on external domain

Hi. I'm looking for a way to access read-only properties of a page on a IFRAME. Specifically I would like to read the selection. Apparently I can't read it because the document lies on another domain. Is there a way to read them? ...