internet-explorer

CSS: So... opacity attribute is not working in Internet Explorer right ?

Hi, I'm using opacity:0.4 property on a <div> element in my page. I've just realised now that it doesn't work in IE at all... the color of the background is completely opaque. Thanks. ...

javascript memory leak

I have a some javascript (used with google maps api) that I am testing on IE and Chrome and noticed memory leak symptoms in IE only: when I refresh the page continuously, the amount of memory used in IE keeps growing (fast), but in Chrome it stays constant. Without posting all of the code (as it is rather long), can I get some suggestio...

"The requested resource is in use" during Navigate in IE add-on

I've created an ID add-on that has a button. When I click the button I get an error that says, "System.Runtime.InteropServices.COMException (0x800700AA): The requested resource is in use. (Execption from HRESULT: 0x800700AA) at Interop.SHDocVw.IWebBrowser2.Navigate . . ." My code looks like this: Imports IE = Interop.SHDocVw ...

Javascript memory leak on page refresh; remedy?

I am experiencing a memory leak in IE that occurs upon a page refresh (as I described in this SO post). All I want to know at this point is: is there a way, on the document "unload" event (which could get called when the page refreshes or closes), to clear EVERYTHING? I'm looking for a simple solution that would ensure that everything...

IE Mixed Content Warining when using https URLs and http:443 URLs?

I'm getting the good ole' "This page contains both secure and nonsecure items." dialog in IE when connecting to an HTTPS site. No big deal... I've just got something coming in over a non-secure connection so that should be an easy fix, right? So I go into "View > Web Page Privacy Policy..." to look to see where I've included an HTTP fil...

Monitor web sites visited using Internet Explorer, Opera, Chrome, Firefox and Safari in Python

I am working on a project for work and have seemed to run into a small problem. The project is a similar program to Web Nanny, but branded to my client's company. It will have features such as website blocking by URL, keyword and web activity logs. I would also need it to be able to "pause" downloads until an acceptable username and pass...

jQuery chebox selection is not working in IE and is working in Firefox

This is my selectall button code..on clicking this i am selecting all checkboxes.. $('#PbtnSelectAll').click(function() { $('#PricingEditExceptions input[type=checkbox]').attr('checked', 'checked'); $('#PbtnSubmit').show(); $('#PbtnCancel').show(); $('fieldset').find("input:not(:checkbox),s...

Checkbox issue with IE6

Possible Duplicate: jQuery chebox selection is not working in IE and is working in Firefox This is my new post regardence of prevoious post with update html code.. http://stackoverflow.com/questions/2994538/jquery-chebox-selection-not-working-in-ie-this-is-working-in-firefox This is my selectall button code..on clicking this...

What handler should be used for WM_DISPLAYCHANGE in ATL

I am trying to catch WM_DISPLAYCHANGE message which is sent when there are some resolution change.Since I am not using MFC i can not use ON_MESSAGE(correct me, if wrong).But I do not know which is to use in place of ON_MESSAGE. Can anybody help me ??? ...

how to set style through javascript in IE immediately

Hi, recently I've encountered a problem with IE. I have a function function() { ShowProgress(); DoSomeWork(); HideProgress(); } where ShowProgress and HideProgress just manipulate the 'display' CSS style using jQuery's css() method. In FF everything is OK, and at the same time I change the display property to block, progr...

Any solution to IE8 bug rendering error when hiding elements?

Bug: when hiding an element with JavaScript in IE8, the margin of still-visible other elements on the page is ignored. This bug has been introduced with IE8, since it works as expected in IE6+7 (and other browsers). <html> <head> <style> #a, #b, #c, #d {background: #ccf; padding: 4px; margin-bottom: 8px;} </style> </hea...

Internet Explorer cannot 'fully' load ActiveX Control

Context I am migrating an installer for an ActiveX control from Per-Machine to Per-User. I did this by programming the installer write to HKCU\Software\Classes instead of HKLM\Software\Classes. Problem On my machine (Windows 7 with UAC Enabled), the ActiveX control successfully loads. On the other windows 7 test machines (one with ...

DIV is picking max-width value as width value for DIV.

I am facing a problem after applying max-width hack for IE7. In mozilla, width of the div is flexible and adjustable as per the image width in the div. But in IE7 it is taking the max-width as width of DIV. Below is my HTML code: http://10.112.99.192/t_1_1_1_category.html Please help me! Cheers! Lokesh Yadav ...

Error on change form action

Hi, I'm changing the form action with: window.onload = function() { document.getElementById('pdf').onclick = addExportEvent; document.getElementById('xls').onclick = addExportEvent; document.getElementById('xml').onclick = addExportEvent; document.getElementById('csv').onclick = addExportEvent; } function addExportEvent...

Differnece between the IE6 and IE8 for Asp.net MVC

I am working on my Office PC I dont have, I dont not have Admin rights to download IE8 in my PC..currently I am working in asp.net mvc application with IE6 Browser..some of the things are not working in IE6 for my application, can any body explain me what is the Differnce between IE6 and IE8 for web application, is there any chance that...

Why doesn't this html/css work in ie?

I am just trying to center a div on the page. It works in chrome but in i.e. the div is still on the left: <html> <head></head> <body> <div id="container" style="margin:0 auto; width:200px;"> test </div> </body> </html> Everything I've read has said that to center a block element, simply add margin:0 auto and specify a wid...

IE Script Error/JQuery Cycle

I am working on a site and it works/looks great in Safari, Firefox, Chrome and IE8. For some reason when testing it in IE 6 and 7 the jQuery does not work (the images are there but static) I get the following error message: Internet Explorer Script Error. Line: 38 Char: 1 Error: Expected Identifier, string or number Code: 0 Can some...

IE+jQuery+Ajax+XHTML: HTML getting clipped after .html() or .innerHTML

This is a really hard problem to put into a brief sentence, so I apologize if I kill it. I launched a site recently which had been extensively tested on my local web server on all my desired browser platforms, including IE8 (IE8 standards mode, XHTML Strict). I encountered no problems at all until the site went live on a dedicated web ...

press save button of "File download dialog" of internet explorer via c#

I am working on internet explorer automation and part of it involves downloading files from a site whcih is hosted on asp 2.0 and uses forms based authentication, so to create end to end automation i used browser automation. I was able to reach to the step where i can get to click on a URL which brings the "File Download" dialog of the ...

IE not blocking javascript

It seems that IE8 defers javascript, but also doesn't block. I've setup a test environment to prove this. Here's the html page(replace 192.168.1.xxx with your server): <html> <head> <title>IE Pains</title> <script type='text/javascript' src='http://192.168.1.xxx/ietest/js.js'&gt;&lt;/script&gt; <script type='text/javascript'> screa...