internet-explorer

Internet Explorer's Compatibility View breaks my site design.

My website design is looking fine in Mozilla. But when I try to run in IE, the design is not looking fine. When the compatibility view from Tools option in menu of IE is unchecked, the design is looking fine. But by default the compatability view is checked. Can by default can we uncheck the compatability view or is their any other pro...

error while traversing xml in javascript

i am using below code to traverse xml in javascript i am able to get value using x[i].childNodes[0].text; function in IE but not in firefox. please tell me what should i use so that it work with all. function loadXMLDoc(dname) { if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); } else { xhttp = new...

Internet Explorer unwanted artifact on images when using javascript slideshow

Hi there, We're having the following weird (well...) behavior in all versions of Internet Explorer browsers when using javascript slideshows. You can see what I mean here http://www.tospirto.net/index.php?ID=photo_gallery&Rec_ID=481 In the last 3 images there are white lines and artifacts created by the browser. This is true as I ...

Weirdest IE bug ever? -- hovering a link causes page elements to jump up and cover others

Ok, I've been dealing with IE bugs for a long time now, but this one is beyond me. IE 7 and even 8 does it for sure, I've not seen it on FF or Chrome. So here's a live URL which produces it: http://mog.com/music/America/Holiday Reproducing isn't easy, it can take a few times to make it happen. Watch your scrollbar to see it change s...

How can i set the name of IE Extension (BHO In IE)

How Can i Set the Name of the BHO appear in IE Extension (e.g Manage Addons).. The Name that Appear in the Internet Explorer Addons list is the Namespace of my program when i attach it with regasm.exe. how can i set the name of that.?... Thanks. ...

IE readonly textarea problem

I'm seeing an issue in IE7 and IE8 (but not other browsers) with a textarea when I dynamically change its "readonly" attribute. The textarea is initially defined as being read-only, and when the user clicks inside the textbox I set readOnly to false. At this point, if I type any normal characters, they don't get displayed - in fact, th...

HUGE Internet Explorer 8 bug with display: table

I have the weirdest bug ever... I'm experimenting with display: table, and my proof of concept works on the very first try after opening a new process, but any subsequent reloading of the page breaks the design. Here is the simple HTML page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/...

Getting blank window interiors when using PHP imagegrabwindow and IE ... sometimes

I'm trying to screen cap different sites as I do some automated browsing to keep a reference image. I'm on a Windows 7 machine and using PHP 5.3.2 from the DOS prompt commandline to run a simple program to open a list of URLs in IE, capture the image, and quit. It's the standard code... $browser = new COM("InternetExplorer.Application"...

jQuery Navigation not working in IE7

Hello, I have the following code in a project for the main navigation. It is essentially a css-sprite that is overlayed once the user hovers over the menu. This is working perfectly in every browser except IE7 (ie6 not tested). I have tried debugging my css and feel this is coming from jQuery / JS code specifically. Is there some jQ...

Can you launch the IE script debugger programmatically?

Having an issue with a client web page where all of the IE features are made inaccessible, I don't use IE much. The web page launches another window to show a pdf and generally fails at doing so - window displays only once, subsequent attempts flashes briefly before closing, and sometimes GPFs. Because the toolbar/menu/context menu are...

HTML: IE: Right padding in input text box

Go to http://jsfiddle.net/srLQH/ and fill in the input text box in the "Result" view. If you do this in FF, Chrome, and Safari, your text will stop 20px short of the right side. In IE 7/8, the text does not stop 20px short--it goes all the way to the edge of the input box. What's the deal with IE? How can I get the same padding effect...

FileZilla help!

Hi guys, i'm just learning to build some website, it's a school project though and after i upload through FileZilla, it became like this. my website is:www.sevenwonders.mezoka.com Here is the picture: http://i396.photobucket.com/albums/pp44/yoyoyaya_2008/Capture-13.jpg I have no idea how to put the URL then display the webpage ri...

Getting pixel value of margin in ie7

Hello, the problem is that if the margin is set to auto ie7 returns auto, while other browsers return the px value, for example look at this: http://jsfiddle.net/Pyadk/ In chrome it returns 0px, while ie7 returns auto So, is there any way to force explorer to return the computed value of that margin? Thank you ...

What triggers the IE Enhanced Security warning

Is there a published set of IE enhanced security blocking rules? Background: When I try out certain jQuery scripts, I sometimes trigger the IE enhanced security warning - then its a matter of trial and error removing bits of the code until I find the offending part,and see if the jQuery can work without it. commenting out the code doe...

IE, textarea value is not changed when pressing buttons

I have an realy nasty problem with focus in internet explorer. I have a textarea for inputing text. This textarea is not visible for the user and is only used to provide robust text input for a more advanced view. As the textarea isn't visible and shouldn't be i use textarea.focus() in the javascript to activate text-input. This has wo...

Html table does not redraw after adding to its DOM ie8

IE bugs out on me with a large table by not redrawing the table when I add input's to it using jquery. It forces a redraw/update when I scroll the table up or down but otherwise it doesnt render the input properly. <div style="overflow: auto;"> <table> <tbody> /// lots of rows </tbody> </table> </div> an...

Internet Explorer: Issue with Overlay / opacity

I'm trying to create a dialog window using the following CSS: #blackOverlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #000000; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); -moz-opacity: 0.8; ...

Param elements being overwritten when flash object is added to the DOM via JavaScript in IE?

I put together some sample code to show what I'm talking about, but basically I need to dynamically add a bunch of HTML to a page that happens to contain a Flash movie that is relying on FlashVars being passed in from the html. The problem is that when you dynamically add a flash object to the DOM in IE, it overwrites all of the param e...

jquery's form submit not working in IE

What we are trying to do here is that we have a form with an id of upgrade_form. We also have a form called 'paypal_submit' form. This form is blank. 'upgrade_form' has billing detail fields(address, name, expiry etc) We then have just one submit button, and the logic was that it will submit the form if a credit card radio button is che...

IE Problem : Transparent div above a picture doesn't trigger the CSS:hover

Hi there! Here is the problem : I want to create reactive zones on a image using transparent div, but the following code doesn't work on IE (tested on Chrome) : the background-color of the div "hover_zone" doesn't change at all. The problem is due to the background-color set to transparent. Use any valid color like #FFF and it works (i...