Internet Explorer (commonly abbreviated to IE or MSIE) is a web browser developed by Microsoft and is included as part of Microsoft Windows.

learn more… | top users | synonyms (2)

191
votes
9answers
19k views

Why don't self-closing script tags work?

What is the reason browsers do not correctly recognize: <script src="foobar.js" /> // self-closing script tag Only this is recognized: <script src="foobar.js"></script> Is it ...
189
votes
42answers
158k views

Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine

Like everyone else ;), I need to test my code on Internet Explorer 6 and Internet Explorer 7. Now Internet Explorer 8 has some great tools for developer, which I'd like to use. I'd also like to start ...
85
votes
11answers
28k views

.trim() in JavaScript not working in IE

I tried to apply .trim() to a string in one of my JavaScript programs. It's working fine under Mozilla, but an error displays when I try it in IE8. Does anyone know what is going on here? Is there ...
85
votes
16answers
38k views

Getting jQuery to recognise .change() in IE

I'm using jQuery to hide and show elements when a radio button group is altered/clicked. It works fine in browsers like Firefox, but in IE 6 and 7, the action only occurs when the user then clicks ...
83
votes
11answers
41k views

Cookie blocked/not saved in IFRAME in Internet Explorer

I have two websites, let's say they're example.com and anotherexample.net. On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the ...
64
votes
2answers
8k views

IE/Chrome: are DOM tree elements global variables here?

Working on an idea for a simple HTMLElement wrapper I stumbled upon the following for IE and Chrome: for a given HTMLElement with ID in the DOM tree, it is possible to retrieve the div using its ID ...
58
votes
8answers
125k views

Support for “border-radius” in IE

Does anyone know if/when Internet Explorer will support the "border-radius" CSS attribute?
55
votes
24answers
58k views

Dropdownlist width in IE

In IE, the dropdown-list takes the same width as the dropbox (i hope i am making sense) whereas in Firefox the dropdown-list's width varies according to the content. This basically means that i have ...
51
votes
5answers
3k views

Why does Internet Explorer not send HTTP post body on Ajax call after failure?

We are able to reliably recreate the following scenario: Create a small HTML page that makes AJAX requests to a server (using HTTP POST) Disconnect from the network and reconnect Monitor the packets ...
50
votes
12answers
106k views

Does Internet Explorer 8 support HTML 5? [closed]

Is there any HTML5 support in IE8? Is it on the IE8 roadmap?
47
votes
4answers
47k views

CSS Selector for <input type=“?”

Is there any way with CSS to target all inputs based on their type? I have a disabled class I use on various disabled form elements, and I'm setting the background color for text boxes, but I don't ...
44
votes
7answers
4k views

Developing Internet Explorer Extensions?

So..after developing a few Firefox & Chrome extensions, I've decided to try and expand my skillset by developing an Internet Explorer extension in C#. I went into it thinking it wouldn't be too ...
42
votes
2answers
1k views

Stupefyingly weird IE 9 Javascript bug: Altering doc title makes subsequent code execute

I don't understand this at all. Here is some Javascript code that works in every browser but IE 9. It is called from a Flash movie using ExternalInterface, and is meant to dynamically resize the movie ...
39
votes
29answers
3k views

IE6: To support or not to support

As most Web developers know, IE6 is a pain to support when it comes to making a website look and feel just as in the other major browsers (Firefox and IE7). I'd like to know what are the feelings of ...
37
votes
8answers
27k views

'innerText' works in IE, but not in Firefox

I have some JavaScript code that works in IE containing the following: myElement.innerText = "foo"; However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox ...
35
votes
8answers
32k views

Force IE8 Into IE7 Compatiblity Mode

Is there a way to force IE8 into IE7 compatibility mode using .NET or Javascript?
35
votes
7answers
12k views

JavaScript Profiler in IE

Does anyone know a tool for Profiling JavaScript in IE? List available: IE8 (Internet Explorer 8 only) JavaScript Profiler YUI!
34
votes
4answers
9k views

Does Internet Explorer support pushState and replaceState?

Does anybody know if Internet Explorer supports the history.pushState() and history.replaceState() methods for manipulating browser history? Considering these are just being implemented in Firefox 4, ...
34
votes
33answers
2k views

How best to convince people to upgrade IE?

I recently asked a question that got shot down for being too strongly worded. I'm having another go today because it's something I really am concerned about and I really do want feedback and ideas ...
33
votes
7answers
8k views

Unexpected Caching of AJAX results in IE8

I'm having a serious issue with Internet Explorer cachings results from a JQuery Ajax request. I have header on my web page that get's updated everytime a users navigates to a new page. Once the page ...
33
votes
7answers
4k views

Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?

We've noticed that IE7 has an odd behavor with code blocks posted on Stack Overflow. For example, this little code block: public PageSizer(string href, int index) { HRef = href; PageIndex = ...
31
votes
1answer
704 views

Bang IE7 - What does it mean?

That title isn't quite as crazy it seems. I promise!! While researching for another question, I noticed the following in Stack Overflow's stylesheets: ... width: auto; ... width: 650px!ie7; ...
31
votes
3answers
8k views

Do HTML5 custom data attributes “work” in IE 6?

Custom data attributes: http://dev.w3.org/html5/spec/Overview.html#embedding-custom-non-visible-data When I say “work”, I mean, if I’ve got HTML like this: <div id="geoff" data-geoff="geoff de ...
31
votes
19answers
2k views

How do you deal with Internet Explorer?

I am aware that there are probably other questions regarding this topic. I guess that every web developer goes through this with IE. My problem: I am developing a web-based application fully based ...
30
votes
5answers
7k views

Why does setTimeout(fn, 0) sometimes help?

I've recently run into a rather nasty bug, wherein the code was loading a <select> dynamically via JavaScript. This dynamically loaded <select> had a pre-selected value. In IE6, we ...
29
votes
11answers
31k views

Emulating CSS3 border-radius and box-shadow in IE7/8

I'm working on HTML for a small web application; the design calls for a content area with rounded corners and a drop shadow. I've been able to produce this with CSS3, and it works flawlessly on ...
28
votes
14answers
21k views

IE 8 Developer Tools not working In Windows?

I am using Internet Explorer 8, not by choice. I need to debug a script in it. However, no matter how many times I click the Developer Tools Icon, under Tools or click F12 it will not show up. ...
27
votes
8answers
49k views

Div 100% height works on Firefox but not in IE. What to do?

I have a container div that holds two internal divs; both should take 100% width and 100% height within the container. I set both internal divs to 100% height. That works fine in Firefox, however in ...
24
votes
4answers
2k views

Dynamically loading css stylesheet doesn't work on IE

I dynamically load a css stylesheet (with a little help from jQuery) like this: var head = document.getElementsByTagName('head')[0]; $(document.createElement('link')) .attr({ type: 'text/css', ...
24
votes
10answers
27k views

Need a good Internet Explorer 6, 7, 8 standalone [closed]

Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I need recommendations on a good Internet Explorer standalone for Internet ...
24
votes
5answers
4k views

IE 8 dropping memory pages?

This question is a spin-off/evolution of this question. (That question got marked as resolved because I put a bounty on it and it auto-resolved, but it never really got answered.) The summary is ...
24
votes
8answers
6k views

Anyone have ideas for solving the “n items remaining” problem on Internet Explorer?

In my ASP.Net app, which is javascript and jQuery heavy, but also uses master pages and .Net Ajax pieces, I am consistently seeing on the status bar of IE 6 (and occasionally IE 7) the message "2 ...
24
votes
10answers
3k views

Firebug for IE

Trying to fix JavaScript bugs is huge pain as is determining the styles applied to an element. Firebug makes these issues a lot easier when working on Firefox, but what do you do when the code works ...
23
votes
1answer
306 views

Is it possible to emulate non-enumerable properties?

ES5 has a enumerable flag. Example Example var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor , pd = getOwnPropertyDescriptor(Object.prototype, "toString"); assert(pd.enumerable === ...
23
votes
9answers
7k views

Override intranet compatibility mode IE8

By default IE8 forces intranet websites into compatibility mode. I tried changing the meta header to IE8, but it doesn't acknowledge the meta header and just uses the browser setting. Does anyone know ...
23
votes
7answers
26k views

jquery ajax request failing in IE

The following ajax call is failing in IE. $.ajax({ url:"{{SITE_URL}}/content/twitter.json", dataType:"json", error:function(xhr, status, errorThrown) { ...
22
votes
3answers
1k views

CSS Performance Profiler?

I'm currently working on a site, and somewhere in my mass of stylesheets, something is killing performance in IE. Are there any good CSS profilers out there? I'd like a tool that can pinpoint rules ...
22
votes
5answers
5k views

IE8 and JQuery's trim()

I am making use of trim() like so: if($('#group_field').val().trim()!=''){ Where group_field is an input element of type text. This works in Firefox but when I try it on IE8 it gives me this error: ...
22
votes
8answers
11k views

'console' is undefined error for internet explorer

I'm using firebug and have some statements like: console.log("..."); in my page. In IE8 (probably earlier versions too) I get script errors saying 'console' is undefined. I tried putting this at ...
22
votes
13answers
49k views

Select dropdown with fixed width cutting off content in IE

The issue: Some of the items in the select require more than the specified width of 145px in order to display fully. Firefox behavior: clicking on the select reveals the dropdown elements list ...
22
votes
11answers
22k views

Internet Explorer 8 and Internet Explorer 6 side by side [closed]

Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine Is there a way to have Internet Explorer 8 and Internet Explorer 6 side by ...
22
votes
15answers
30k views

Any way to remove IEs black border around submit button in active forms?

I am implementing a design that uses custom styled submit-buttons. They are quite simply light grey buttons with a slightly darker outer border: input.button { background: #eee; border: 1px ...
21
votes
5answers
454 views

Websites that archive cross-browser, cross-platform css/js bugs?

I'm about to develop my own browser inconsistency/bug compendium site but I'm wondering if I really need to - can we get a wiki of sites that do this already? I'm aware of a lot of them but I hope I'm ...
21
votes
13answers
39k views

How to solve/hack fading semi-transparent PNG bug in IE8?

As you know, IE6 has bug that can't display semi-transparent PNG file without using non-standard style like filter. In IE7, this problem is fixed. But It still has some bug about PNG file. It can't ...
21
votes
7answers
10k views

Internet Explorer 6 and 7: floated elements expand to 100% width when they contain a child element floated right. Is there a workaround?

I've got a parent div floated left, with two child divs that I need to float right. The parent div should (if I understand the spec correctly) be as wide as needed to contain the child divs, and this ...
21
votes
6answers
13k views

Animated GIF in IE stopping

Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers. Thanks.
20
votes
5answers
899 views

Can I load an entire HTML document into a document fragment in Internet Explorer?

Here's something I've been having a little bit of difficulty with. I have a local client-side script that needs to allow a user to fetch a remote web page and search that resulting page for forms. ...
20
votes
6answers
7k views

How to “enable” HTML5 elements in IE that were inserted by AJAX call?

See the solution at the bottom of the question. IE does not work good with unknown elements (ie. HTML5 elements), one cannot style them , or access most of their props. Their are numerous work ...
20
votes
7answers
19k views

jQuery change event on <select> not firing in IE

I've got a page with a variable number of <select> elements (which explains why I'm using event delegation here). When the user changes the selected option, I want to hide/show different content ...
19
votes
14answers
31k views

CSS to hide INPUT BUTTON value text

I am currently styling an <input type='button'/> element with the following CSS: background: transparent url(someimage); color: transparent; I want the button to show as an image, but I don't ...

1 2 3 4 5 222