internet-explorer

DOMNodeInserted equivalent in IE?

Other than using a timer to count the number of elements over time and looking for changes, I can't think of a better way to simulate this event. Is there some sort of proprietary IE version of DOMNodeInserted? Thanks. ...

more unordered list padding/margin cross-browser craziness

I just received this awesome help: http://stackoverflow.com/questions/2144010/is-there-a-way-to-extend-background-color-of-unordered-list-items-to-go-behind-bu and then I was dealing with the text-indent property to again line up the wrapped text in this unordered list, but lo and behold it looks like IE and FF are handling the padding ...

jQuery and IE, not behaving at all.

Solution var options = { opacity: opacity }; //Many thanks to David Higgins for his help var direction; if(id == "chat") { direction = {right: dir + amt, top: dir + amt }; } else if(id == "rplayed") { direction = {left: dir + amt, top: dir + amt }; } else if(id == "info") { direction = {right: dir + amt, bottom: dir + amt...

How to render all IE version with w3c box model?

How to render all IE version with w3c box model? ...

height:100% problem in IE7, not in FF

I want to display a page with no scrollbar (height:100%). I have read suggestions to add this argument to html and body. But it does not work as I expect. In FF indeed I do not see a scrollbar. But in IE7 and 8 (Standards mode) there is a scrollbar. In Quirks mode it works as expected. Please take a look at this: <!DOCTYPE HTML ...

How can I determine the mime-type of a document using javascript only?

I need to determine the mime-type of certain files that get returned from the service, I do not know their file extensions or what their type is before hand, basically we retrieve documents from the API like such: "http://site.com/getFile/BFD843DFLKXJDF" where the random text at the end is some file. <input type="button" value="Click Me...

jQuery, IE & Animate

I've been working on a website that is very jQuery intensive in Chrome and Firefox. It's now come to the stage where one opens it in IE and sees WTF IE is doing to the website. I get a problem when clicking the minimise button (top left) in one of the windows on the page. The item should animate to a corner and change opacity however it...

Using IE conditional comments to include CSS or JavaScript files results in more http requests

A web designer has created pages for us with IE-specific comments. Consequently, certain stylesheets are only included if the user is using a specific version of IE: <!--[if lt IE 7]> <link type="text/css" rel="stylesheet" href="/styles/ie6-fixes.css" media="screen" /> <![endif]--> The same technique has been used for JavaScript file...

ie7 float div height

i have this code Code: <div id="container"> <div id="products_content"> <div id="products_page_header"> <div id="products_page"> <div class="post"> <div class="entrytext"> some text </div> </div> </div> ...

How to get WinInet's proxy settings quickly (without network dependency)

How can I quickly retrieve Internet Explorer's proxy settings from C++? The windows function WinHTTPGetIEProxyConfigForCurrentUser() gives me exactly what I want... The problem with WinHTTPGetIEProxyConfigForCurrentUser() is it is running unacceptably slowly on some of my user's systems (they are running Windows 7). For these users, th...

Fixed positioning in internet explorer ?

I just wrote a sample page with a corner banner and tool tip. Everything is working just fine with firefox. But in IE things are not working correctly. I surfed the internet and found that IE doesn't support position: fixed. So does anyone know how to work around this problem ? Here is my source code <!DOCTYPE HTML PUBLIC "-//W3C//DTD H...

ExtJS GridPanel Scrollbar does not appear in IE7 but it does in Firefox, etc

Setup I have an accordion layout containing a "properties" panel that nests two inner panels. The first inner panel holds a Ext.DataView, while the second panel is the Ext.grid.GridPanel in question. In the screenshot below, the white space containing the folder icon is the dataview, and below that is the gridpanel. Problem In Fir...

Looking for IE6 .PNG Transparency Fix for both img tag and background images...

Not sure if this exists as I have been googling all around and can't find anything great. Thought I would post this question prior to redesigning the page I am working on. Is there anyway to fix the transparency problems with .png's in IE6 for both image tags and background images? Please tell me there is a magical javascript that jus...

How to retrieve saved passwords of internet explorer 6 and later version?

I'm planing on a program to manage saved passwords of internet explorer. I saw many tools which displays the saved passwords, but I didn't find the source code. Thanks! ...

JavaScript string.format function does not work in IE.

Hello, I have a JavaScript from this source in a comment of a blog: frogsbrain It's a string formatter, and it works fine in Firefox, Google Chrome, Opera and Safari. Only problem is in IE, where the script does no replacement at all. The output in both test cases in IE is only 'hello', nothing more. Please help me to get this script ...

IIS & IE timeouts for non-idle requests

Our web application users need to download a huge file (>1.5GB). It is not a file actually, but data retrieved by our application from the database. They send a web request, and our application returns chunks of data.This, obviously, takes time. However, the connection is not idle, or inactive, during the time of the download. The serve...

how to identify IE error Messages

i m working on a php page where css, JS and Jquery is included. in Mozilla it show Error message on console or in firebug but in IE it display Line:1597 Char:9 Error:Invalid Argument Code:0 URL: blah blah blah now how do i know this error?? in fact there is no 1597 lines in my php code and if i extract all JS and CSS(included) then...

Selenium RC testing: Internet Explorer opens twice

Hello, I am running my Selenium RC tests in IE7. The problem is that when I start tests, Selenium opens two windows instead of one: the portal I'm testing doesn't open in the first one, but it opens correctly in the second. The problem is that it fails with an error in method openPortal() [and lets me know that it was not possible to o...

childNodes not working in Firefox and Chrome but working in IE

I have a gridview in its 3rd cell, there is textbox control, I am calling javascript function on onchange. Can some body tell me why this is not working in Firefox and Chrome but working in IE grd.rows[rowindex].cells[3].childNodes[0].value It return correct value in IE but not in Chrome and firefox (In FF and Chrome it return undefi...

How to call dynamically created flash external interface in IE from javascript?

What I have: A swf exports a function via ExternalInterface Javascript creates new embed object and adds it to the document Calling flash functions works fine in other browsers Calling flash functions will fail in IE 8 Example of exporting functions in swf: flash.external.ExternalInterface.addCallback("isActive", ... Example of c...