internet-explorer

Programmatically set browser cookie (Firefox)

I know from this question that Firefox 3.0 and up stores its cookies in an SQLite database. My question is: can you access this database from other desktop programs in such a way that you could add a cookie? I realize this has security implications. However, I do not want to read them at all. I want to be able to set one cookie if po...

Internet Explorer ignores really small heights set in CSS

I have CSS that looks like this... .ColorSeparatorArea { background-color: #3d3d77; height: 1px; } ... and then I'm applying that style to a DIV element: <div class="ColorSeparatorArea"></div> It works fine in non-IE browsers, but in IE, it sets the height of the div to the height of one line of text and it won't let me go ...

Flash Movie Doesn't Show in IE

I have a flash movie that runs fine in FF, Opera, Safari but not in IE. When I right click on the blank box that sits there now, I don't even get the usual flash menu that shows. Could someone please look at link text ...

Internet explorer and floats: please explain

Yesterday someone asked Width absorbing HTML elements. I presented two solutions: one table-based and one pure CSS. Now the pure CSS one works well in Firefox and Chrome but not in IE. Basically the floats are being bumped down to the next line. It is my understanding (and the behaviour of FF and Chrome) that this should not be the case...

IE Pdf File download status

Hi, is anyone able to tel me how to detect when adcrobat reader has finished downloading a file in IE? I have written a IE band object that reacts to a PDF file in the browser window but this requires the PDF file to be fully downloaded before it will work properly. Is there a way to get the download status from IE / Acrobat? Thanks. ...

Emulate clicking a link with Javascript that works with IE

I want to have java script clicking a link on the page..I found something on the net that suggests adding a function like this: function fireEvent(obj,evt){ var fireOnThis = obj; if( document.createEvent ) { var evObj = document.createEvent('MouseEvents'); evObj.initEvent( evt, true, false ); fireOnThis.dispat...

jquery error placement

i've a jquery form. the validations work correctly but i'd like the error to be placed properly. right now it displays in IE 7 as: but i'd like to display it as: this is the css code: div.error { display:none; } <%-- input { border: 1px solid black; }--%> input:focus { border: 1px dotted black; } ...

IE8 Developer Tools not able to select?

I've grown very fond of the Devloper Tool in IE8 (pressing F12) but for some reason, it is no longer functioning, pressing F12 only results in the selection tool opening, but no interaction with the page I opened the tool in is happening, usually a blue border is surrounding your "selected" element on the page, this functionality is howe...

Measuring Javascript performance in IE

Hi everyone, I have a webpage that heavily uses Javascript (AJAX requests, Google Maps API, HTML building, etc) and the page brings my PC to its knees whenever opened in Internet Explorer. I'm looking for some tools to help me find out which functions are taking the most time to finish. I have some basic profiling javascript functions, ...

IE6 forms: focus disabled on input fields? (Multiple IEs after IE8)

I recently installed IE8, and found quirks using the old copies of IE I have for testing sites with. After reinstalling the "Multiple IEs" I use, I find that now I cannot focus on input fields, either with the keyboard or mouse. I've found that other people have experienced this behavior, but not a solution for it. Has anyone here got a...

How Do I Shut Off Visual Studio 2008 Script Debugging

If I launch an ASP.NET project, using Visual Studio 2008 and Internet Explorer, Visual Studio starts script debugging. I get a Script Documents node with a child node of Windows Internet Explorer and Default.aspx with a bazillion anonymous code nodes underneath. I'm having difficulty shutting this off, other than telling VS to launch t...

How viable is ie7-js by Dean Edwards?

I just found out about ie7-js ; IE7 is a JavaScript library to make Microsoft Internet Explorer behave like a standards-compliant browser. It fixes many HTML and CSS issues and makes transparent PNG work correctly under IE5 and IE6. http://code.google.com/p/ie7-js/ It looks like it's really good, but is it really working...

How do I set X-UA-Compatible header to IE=EmulateIE7 for IE 8 browsers using Apache 2.0?

I am able to set this header X-UA-Compatible "IE=EmulateIE7" using the following directive in my Apache 2.0 httpd.conf file: <Location /mypath> Header set X-UA-Compatible "IE=EmulateIE7" </Location> How can I configure Apache to only set this header for IE 8 browsers? ...

IE not updating display after callpback pane updates the DOM

I have an update panel in an ascx page using .Net 3.5. The user enters data, initiates a callback, and ajax updates the DOM. Usually everything's all hunky dory. Once in a while the DOM gets updated and IE doesn't bother refreshing the display. The entire updated area appears to be blank. Once the user does something that would trigge...

IE Operation Aborted - None of the regular fixes work!

Hello StackOverflow! First of all, I've been researching this "Operation Aborted" error / bug for what seems like weeks, so here are a couple related questions and good articles if you are not familiar with it: Why does ASP.NET cause the “Operation Aborted” Error in IE7? (so question) Detecting cause of IE’s Operation Aborted Issue (so...

CSS: Removing class with visibility: hidden / position: absolute does not unhide in IE6/7

I have the following CSS class: .hidden { visibility: hidden; position: absolute; } I have div with that class on it. If I remove the class, the div doesn't show. But the second time I "remove it", the div shows. Any idea why? See a stand-alone example using YUI for this: http://avernet.googlepages.com/ie-visibility.html (cod...

How to use semi-transparent png images in IE6

How can I use semi-transparent png images in IE6? ...

What is an alernative for the form select for full versatility in Internet Explorer?

I know Internet Explorer has always been hopeless with styling html <select> with inconsistent or non-existent font sizes, colours, borders, background colours etc so what are some alternatives for creating your own flexible field that is cross-browser compatible? It's fine to require any JavaScript framework such as jQuery etc. I'm thi...

IE toolbar, visible by default.

Hi, i have created an IE band object (toolbar) that is working well. however, when installed on a new machine it is not visible by default. Of course one can turn it on by right clicking the toolbar area and selecting it, however, i would like to know if there is a way or an option in the registry that will enable me to have the bar turn...

How to provide (in IE and Firefox) a binary file download in a popup that closes ?

I need a cross-browser solution to the following use case: The user clicks an "export" button on one of our pages, which opens a popup with a form. On submitting the form, the user should receive a binary file download (a CSV file, for example), and the popup should close without changing the visible content of the parent window. We...