iframe

Transparent iframe ontop of pdf in iframe

I have found the technique of putting iframes on top of an iframes to get round the z-index problem browsers have with iframes. The problem I am facing now is I need the the iframe that overlaps a PDF (loaded into an iframe) to be transparent. Is this possible?? The reason I want to do this is so I can have a transparent png over the t...

JQuery thickbox with iframe. Set focus to input field

Hi I had a jquery thickbox modal popup on my application. (iframe) Everything works great but I want to set the focus to a specific input field. The Iframe loads a normal aspx page so I thought I'd do a $(document).ready(..focus); I put that script in the IFrame code However this does not work. I believe that after the "ready" some o...

How to write my own proxy, anonymizer and host it to help when websites are blocked at work

I work as a contractor/freelancer. At most client sites a lot of websites are blocked. Specifically Gmail and Facebook which I really would like access to while on assignment. I know there are a lot of proxy/anonymiser websites out there that allow you to use their website to circumvent the website filtering of the business IT policy bu...

sed to replace random site urls in ifrrame

Hello, my problem there is alot of pages infacted with iframe each one of them have different url or different id here is example <iframe src="http://xxxxxx.xxxx/xxxx.xxx" width=xxx height=xxx style="visibility: hidden"><iframe> or <iframe src="http://xxxxxx.xxxx/xxxx.xxx?xxx=xxxx" width=xxx height=xxx style="visibility: hidden">...

Stop Anyone From Viewing My Site Using an IFrame

I have looked and tried but don't see where I can stop some being able to browse my site through an IFrame or Thickbox? I want to stop banned members from accessing the site through proxy sites that give the end user the ability to browse through a IFrame. I know nothing may be full proof but it's still worth the question. ...

Embedding web controls across sites - using IFrames/Javascript

Hi I'm just looking for clarification on this. Say I have a small web form, a 'widget' if you will, that gets data, does some client side verification on it or other AJAX-y nonsense, and on clicking a button would direct to another page. If I wanted this to be an 'embeddable' component, so other people could stick this on their sites,...

Can I customize cloning in Script.aculo.us's ghosting?

I have a Draggable in Script.aculo.us. I'd like to use ghosting, which clones the dragged element, so you appear to be dragging a "ghost" of the element. However, this element contains an iframe. When I begin the drag, the clone's iframe loads, which is annoying. I'd like a chance to remove the iframe from the clone. How can I do th...

How do I get the contents of an <iframe> containing a different site?

I'm able to get the 'src' attribute of an using .src. But I cannot get the contents that are located in another domain. Is this a browser security problem? jQuery(document).ready(function() { var elementTest = $("iframe:first").get(0); alert(elementTest.src); // ok alert(elementTest.innerHTML); // not ok }); ...

how to force link from iframe to be opened in the parent window

i need to open the link in the same parent page, instead of open it in a new page. note : The iframe and parent page are the same domain. ...

IFrame Background Image not show in IE6 and IE7

i need help . its work ok in firefox or Opera. the problem is in ie. i try to put it in style file , or inline style but not effect. ...

Flash AS3 url link to open separate swf in an iFrame

Hello, I'm trying to use my swf Menu to change the Content swf below it which is in an iframe so the menu doesnt have to load each time, but having trouble linking the buttons.. My flash code is: homeButton.addEventListener(MouseEvent.CLICK, homeButtonFunction); function homeButtonFunction(event: MouseEvent) { var targetURL:URLRequest ...

Setting the src attribute of an IFrame to data:application/pdf;base64?

Setting the src attribute of an IFrame to data:application/pdf;base64, isn't working for me, any ideas why? Here's the .aspx markup <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <sc...

Iframe in Tab Madness!

I've searched all over and have found possible solutions but they don't quite work how i need them to. I am really new to jQuery but I'm trying :-) I have an iframe that sits in a Tab ( Tabs powered by jQuery) In the third tab sits an iframe that holds a slideshow My problem: When I click on the third tab which houses the iframe all...

FB Feed dialog not asking for user comments ?

Why FB Feed dialog below (iframe solution) is not asking for user comments on dialog, the dialog appears and post is sent function callback() { alert("Thank you"); } function showFeed() { FB_RequireFeatures(["XFBML"], function(){ FB.Facebook.init('kkkc', '/facebook/xd_receiver.htm', null); FB.ensureInit(f...

How to login without leaving RP by showing the OP login window in iframe ?

How to login without leaving RP by showing the OP login window in iframe ? I am using Openid Provider for the login in my Website. how to implement the login window inside the iframe. ...

How can an iframe change its parent's URL fragment (without causing a refresh)?

I'm trying to get a child JavaScript application to update it's parent document. In essence, this is a very simple problem: a JavaScript program opens an iframe in it's own document. another JavaScript program is loaded into the iframe. the second program needs to change the fragment (anchor) in the original page. the first program, t...

How to hide javascript errors throw in iFrames?

I have an iFrame that shows external web pages through one of my proxies that I control. But this proxy doesn't handle javascript properly most of the time, the external pages throws javascript errors. Javascript doesn't need to work as it's not important. What can i do to hide these javascript errors? They are annoying and I may have ...

passing url to iframe

I have links on the side of my page such as "home", "news", "contacts", ... and an iframe in the middle of the page, I would like the iframe to go to diffrent urls according to the link selected. Could I do this by only using html and/or how? ...

How do I build an iframe with the same domain as the page in Safari/WebKit

The scene: I'm writing an embeddable widget. It takes the form of a <script> tag, which builds an iframe containing everything it needs to display. The iframe has no src, and the script writes to it with theIframe.contentWindow.document.write(). This keeps the widget contained, and keeps element ids and script from conflicting with th...

How to make links break out of iframe when you only control the iframe page (not the framed pages)?

I have a site that displays other sites through an iframe on certain pages. It does this in order to display a toolbar that is relevant to the reader (like Facebook and Owly does). However, when the user chooses to leave the original site I want the bar to go away. As you might gather, I don't control the sites in the iframe, and they're...