iframe

Page backgound turns black on zoom in IE7

i have a pop up in the page.. which loads an iframe as the background with a slight dull gray color, when the pop up loads.. but when user zoom the page in IE7 and restore to 100% the background turns black/white.. why is this happening... is there any way to correct this error... pls help ...

asynchronous tweet button, image flickers

Hello, I am using the tweet button, with this asynchronous Javascript loading code below. When I place it at the bottom of my HTML the background image of the tweet button flickers, because it is loaded last. I noticed in firebug it is pulling this via an iframe and the image is a background specified in CSS. Is there anyway to load t...

How do I interact with an Iframe using Powershell?

I'm trying to automate a website and find myself needing to get to the contents of an iframe. Since this is an internal application, I've put in this sample, which illustrates the error $ie = new-object -com "InternetExplorer.Application" $ie.navigate("http://arstechnica.com/") $ie.visible = $true $doc = $ie.document $maglistcontro...

read http response from iframe src using javascript

We have a scenario where our iframe loads external src. There could be url response error. Since we are unableto read the response code we are unable to stop the processing. We have a code some thing similar to We should not be using ajax since we face some issues with cross domain functionalities Please help.... ...

Talking to iFrame from ASP.NET code behind

I found this really cool page that allows you to hook up facebook into your site: See here <iframe id="MyIframe" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.EXAMPLE.com%2F&amp;amp;layout=button_count&amp;amp;show_faces=true&amp;amp;width=100&amp;amp;action=recommend&amp;amp;colorscheme=light&amp;amp;height=21" s...

Jquery inside Iframe

Long time lurker of stackoverflow and just trying something with iframes and jquery which I couldn't figure out an answer for. I have jquery location in the main page but not inside the frame, in my iframe I have the usual $(document) jquery. Unfortunately I get this error in firebug "$ is not defined" Is there a way to get around t...

iframe history coming up twice.

I am trying to use an iframe to move around the site. My link inside the iframe would be <a href="#" onclick="loadPage('test')">test</a> //loadPage function function loadPage(page){ location.hash = page; $('iframe[name="iframe"]').attr('src','/'+page+'.php') } Now it works perfectly in IE7, pressing the back button or for...

How do I capture an onkeyevent across multiple frames & subframes

I'm dealing with a ball-of-mudd project that uses frames & iframes to create a "customizable" interface (like people did in 2002). The application runs from within a hta and kind of emulates a real WPF style app. I need to capture keys so I can selectively change/refresh some of the subframes. What I'm trying to do is, if there was a ...

Submitting a form in Iframe by Jquery and get the returned value.

Im having a webpage with an iframe with form in it. I want to submit the form and get the result. How can i do it with jquery? <iframe src ="html_intro.asp" width="100%" height="300"> <form action="submit.php"> <input type="text" name="name" /> </form> </iframe> ...

auto-size iframe cross domain

I am making a web widget using iframe and javascript and i would like to make my iframe resizable to it´s content (which is loaded from other domain). I have done some search(inclusive here at StackOverflow) and i find a couple of topics but i couldn´t find any conclusions about this issue. Is this possible or not? Because atm i have ...

Cross site scripting on the same domain, different sub domains

I have an iframe I'm using to pull in some content hosted by a 3rd party vendor to our website. We are trying to determine the height of that content to adjust the iframe height but I'm getting cross site scripting errors. I wasn't aware that sub-domains count as a cross-site. Is there some way around this without having to keep them on ...

HTML Form Target directed to IFRAM working in FF but not IE

I have a form which consists of two different targets. One target submits the form and the other presents a preview of the form data. My only issue here is that my logic works fine in firefox however the iframe in which the preview is to be displayed remains blank when I click the preview button. I've also noticed the form data being li...

Unbinding form submit to iframe with jQuery

I have a PHP page with multiple forms, some of which submit to an iframe (separate iframe for each form) to allow for ajax-like file uploads. I don't want the user to have to click a "Submit" button after selecting each file, so I am submitting the form using jQuery's .submit() function inside of a .change() event on the file input elem...

Why Chrome does not show CSS3 ::-webkit-scrollbar scrollbar for iframe?

Why Chrome does not show CSS3 ::-webkit-scrollbar scrollbar for iframe? Demo http://jsfiddle.net/laukstein/C9s3P/ <iframe scrolling="yes" style="overflow-x:hidden; overflow-y:scroll; width:150px; height:50px;" src="http://en.wikipedia.org/wiki/Web_browser"&gt;&lt;/iframe&gt; CSS ::-webkit-scrollbar{ width:0.8em; height:0.8em...

IE6 : Download html without executing the contained javascript, in ISO-8859-1 charset

Hi ! Here is a code (using jquery) i use to download a html file from which I extract a table and its content. var url = $('#url').val(); // url to access if ($.browser.msie && $.browser.version.substr(0,1)<7) { var frame = $('<iframe/>').css('display', 'none').attr('src', url ); frame.appendTo('body') .load(function() { ...

Facebook Authentication, IFrame and Variable Passing Help

I am currently using this recently written tutorial on authorizing an application with facebook using auth 2.0 and it works. the application authorizes correctly and uses the GraphAPI. http://kartiklad.com/oauth-2-0-and-graph-api-for-facebook-canvas-applications/ But the problem is using the IFrame with a multi page website and this me...

ASP.NET Pop-Up with wizard control. UpdatePanel vs Iframe

I have an implementation question. My Job wants me to create a popup with an updatepanel inside of it. The updatepanel would have a wizard control that would take you through some steps. Would it be better to use and Iframe to simulate an updatepanel between steps or just use an updatepanel? ...

Scroll to top of parent frame on iframe change?

Is it possible to scroll(0,0) to the top of the parent page when the user browses in an iframe. For example we have an iframe that is the entire height of the page with search results. When you click the next page button in the iframe, the focus stays at the bottom of the page. I'm not even sure if is possible to detect this. The ifra...

MediaWiki Template Parsing with HTML Tags

Hi all, How do I parse wiki markup within tags? For example, I'm creating a template to insert an iframe into my personal wiki page: Template:iframelink contains: <html> <iframe src="http://www.{{{1}}}.com"&gt;&lt;/iframe&gt; </html> However, I can't pass anything to {{{1}}} because it's within the <html> tags. What work-arounds ...

How to display html email in the browser without it changing my bg colors and altering my table

In a new app, I'm building, I want to display an html email in a table in the browser. The issue is that the html emails are changing the background color of my webpage and at times ends an html table I am using to display multiple emails. The emails usually contain full html, body, div, and table tags. A normal occurrence is an b...