internet-explorer

Invoking function in iframe on same-domain, supporting Internet Explorer

I have an event on the parent page that triggers a javascript function, which in turn calls another function on the child iframe. Both pages are in the same domain and I have verified this by having javascript display the document.domain in both pages simultaneously. This is what has worked for years, and is suggested in similar topics:...

Ajax and JSON response bug in Internet Explorer (works in all other browsers)

For some reason IE is asking us to download a file instead of running it as ajax. This works in all browsers except IE. I tried messing with the headers that it returns with no luck. The function grabs form data then post's it the response is a can be an array of any number of items to be updated on the page. Its not suppose to be fi...

Rereating the blocks content in ie7

Ie7 repeats the blocks content if i write float: left; to that block. Has anyone the same problem? How could I fix that? Any ideas? ...

Object doesn't support this property or method on error on IE 8

Hi I have this function in javascript file which works perfectly fine in Firefox / Chrome but for some reason throwing 'Object doesn't support this property or method' error on IE 8 . Any ideas how should I rewrite the function so it is working in all sort of IEs? validateStep1: function () { var digitOnly=/^\d/; var res...

jQuery Datepicker keeps showing when closed in IE7

I have an issue with datepicker continually reappearing when the Done button is clicked. But only in IE7, not Firefox - it stays hidden. I suspect the problem is datepicker is shown on focus and the host input is being refocused in IE when datepicker is closed, triggering it to come up again. JQ 1.3.2 (also tried 1.4.2) JQUI 1.7.2. $...

IE ignoring updated cache control headers

I have a website which currently allows caching of its images, however, there was a decision to no longer allow caching. So I proceded to add cache-control and Expires headers to the response header. I noticed however that IE still sends out a conditional request on the images and the server responds with a 304 response. In the 304 ...

How to get selected text from iframe (working on IE)

How to get selected text from iframe (working on IE) ...

jQuery 1.4.2 IE8 error on page expected ')'

Hi all, I'm having an issue with IE8 (nothing new there). The error I'm getting is not making much sense as it does not occur on FF or Chrome. Here's the code: function remComp(id, trade) { $.ajax({ url: "functions/removePriceSurveyComparison.php", type: "POST", async: true, ...

internet explorer is not prompting for save password on a page

Hello All, internet explorer is not prompting for save password on a page on my website because there are other two text boxes on the login page.is there any way with keeping the other two text boxes make it prompt? Any ideas are welcomed. Thanks in advance ...

Error message comes ON IE when try to download file

Hi, On this page it generates a Excel sheet and allows user to download that. But as shown below it does not work properly on IE (both 7 & 8) this works fine with Firefox,chrome and safari. Is there any settings we can do on both client side or Server side. image location thank you ...

Padding does not work in iE?

I would like to have space around the content, inside the border of the element. http://www.w3schools.com/CSS/css_padding.asp I have used cellpadding which is working pretty good in FF but not in IE. The version of ie that i am using is 7.0.5730.13 I have tried a simple table <table style="padding:100px" border="1"> <tr><td >123...

IE 6.0 crashing when printing from my web application

When clicking on print button the second time from my app, IE 6.0 is crashing. Steps to reproduce: 1) Click on print Button and cancel the print dialog. 2) Click on print again. IE 6.0 crashes. It works fine in IE 7 & 8. Below is the stack trace i got from WinDbg. Microsoft (R) Windows Debugger Version 6.11.0001.404 X86 Copyright...

xbap fails to load in internet explorer

There is one user who only get a dialogue box and download error when browsing to my xbap application. I've got several other client users without this problem. What could be causing internet explorer not to be able to display the xbap? ...

equivalent to firebug in IE

Hello, what is the equivalent debug tool to FireFox firebug in Internet Explorer ? thanks EDIT: What is this tool ? ...

Images fail to load on my website on IE only

I just created a website ( http://www.kalif.ca ) for my business. When I load the site in IE (in my specific case IE 8 on Win 7), on the main page, the only image that's loaded is the logo. Any insights as to what might be happening would be greatly appreciated. ...

Suppress default handling of Ctrl+O in Internet Explorer

I'm trying to suppress IE's default handling of Ctrl+O. I've got a onKeyDown handler which get's called, but even though I call event.cancelBubble and return false, the default File|Open command still runs. btw: this is not critical since I can just pick another key but curious if there might be a way around this. ...

Internet Explorer CSS property "filter" ignores overflow:visible

Apparently Internet Explorer (up to version 8 at least) ignores overflow:visible when applying filter (e.g. for opacity), causing anything outside the filtered element to be clipped as if overflow:hidden were used. Are there any workarounds to this behavior ? The sample code below shows how child is clipped by container only its right...

location.href in iframe

Hi all, I have a simple html file saying; <html> <head> <script> var someClickEvent = function() { location.href = '?action=someOtherAction'; }; </script> </head> <body></body> </html> This scripts runs at 'domain.com', now imagine this file is requested via an iframe in a 'loca...

problem with IE which removes new lines from $("#content").text()

problem with IE which removes new lines from $("#content").text() HTML Code <div id="content"> <p>hello world</p> <p>this is a paragraph</p> </div> jQuery Code alert($("#content").text()); result (IE) IE removes new line (\n) how can i fix this problem ? hello worldthis is a paragraph result (FF) hello world this is a paragra...

Basic authentication in IE

A URL such as http://username:[email protected]/ does not work in Internet Explorer, as explained at http://support.microsoft.com/kb/834489. I can't find a proper workaround for this. I want just a simple link in a HTML document which works. Edit to add the purpose of the exercise: We have a website, with fairly secure cookie-based ...