internet-explorer

weird IE bug?

hey, I've spent too much time trying to get this to work on IE 7. It's working on ff and the only errors coming up on validator are missing alt tags for images (9 errors). The entire site works except for this one part, and so I'm wondering if there's a weird float bug that I'm unaware of. I have a div with an image inside of it. Under...

How to identify an Explorer Bar(Internet Explorer) is hidden or not?

I can make an Explorer bar show/hide using IWebBrowser2::ShowBrowserBar Method. I want to use a single button to toggle between Show/Hide. There is a parameter for ShowBrowserBar to set for Show/Hide. How will I get the status of the explore bar now? ...

in IE, the "X-Requested-With" header of jquery becomes "x-requested-with" (lowercase)

Why it is converting to lowercase? In Firefox it goes as: "X-Requested-With". While in IE, it goes as: "x-requested-with" ...

Disable Internet Explorer shortcut keys

EDIT: After waited a while and didn't get anything yet, I've decided to do shortcut disable thingy only for IE now. Is there a possibility to disable IE shortcut keys to access menus/print etc. via vbscript? Is it possible to disable browser shortkeys? Because many of them are using in application. For instance, "ctrl+p" i...

IE8 loses my session data when using payment gateway

This is a really strange problem, that appears to be somewhat intermittent (although it has started consistently occurring now - possibly due to a Windows Update?). My code has previously worked fine in IE7, and continues to work in Firefox, Chrome, and seemingly any other browser but IE8. I'm setting some session data and then passin...

Printing HTML, with faithful CSS formatting, from IE/Delphi?

I've got a small program that displays third-party generated HTML pages. It's really just a wrapper around a locked-down TWebBrowser component (which is just an IE wrapper, I believe). The client wants to print these pages now too - but the TWebBrowser print method doesn't render all of the CSS. For instance, where the client uses block...

Display already hidden table cells in IE with CSS.

IE 7 does not display the initially hidden table cells (class="c") when class of the containing div is changed to "b", where "display:none" rule is removed. However, it should as it does for the row (class="r"). Other browsers behave properly. Seems like an IE bug. Did anyone came across this issue before? Any solutions? Thanks a lot. ...

Add CSS3 support to IE7+ with Javascript

I would like to use CSS3 selectors (such as :nth-child), but they aren't supported by any version of IE. In my Rails app I've already included Script.aculo.us and Prototype and it would be great not to have to include Jquery. Is there any script to fix IE's behaviour? (I'm not interested in IE6 compatibility) ...

Weird IE javascript error

For some reason when I run my game in IE it stops during the preloader. I opened up IE8's debugger and it failed on this line complaining about some run time error. document.getElementById("mainpreloaderscreen").innerHTML=loaded+"/"+total+"<br><button onclick=\"gamepreload('all')\">load all (not recomended)</button>"; Why does IE do ...

Getting a Javascript error in IE7 but not in Firefox

Okay, so I'm writing some Javascript for a simple effect: when a drop down gets selected, a series of options will appear, depending on which one is chosen. This works great in Firefox, but when I went to test it on Internet Explorere, things weren't so pretty. It failed with, what is oh so helpful, and unknown runtime error. So, here is...

VS 2008 Opens Default Browser instead of IE for SilverLight Application

Hi My default browser is Chrome. When I run my web applications within VS 2008 IDE, it uses chrome. I want to use IE for this. Is there an option in VS 2008 to make IE the browser to load the web applications? I just want this when using VS 2008 - I don't want to change my default browser each time otherwise. EDIT: when creating a s...

One computer cannot authenticate to TFS or Exchange

I have several computers... only one of which cannot authenticate to either my exchange or TFS server. (2 of the computers are at my home trying to connect to our exchange/tfs server at work, one of which as the problem). Several other employees have not had any connectivity problems. The errors I am seeing are 401 2 2148074254 401 ...

open browser error in VSTS2008 for a Silverlight project

Hello everyone, I am using Silverlight 2 + VSTS 2008 + C#. And I downloaded source code from the popular sl2videoplayer, http://sl2videoplayer.codeplex.com/ then I build the solution and then using F5 to debug (IE tries to open default.html). But seems the page cannot be opened, here is the screen snapshot. Any ideas what is wrong? htt...

IE image spacing issue

I have an image above a div, and IE (7, and presumably 6) insists on putting a space between the two. How can I get rid of that space? <html> <body> <img src="http://www.google.com/intl/en_ALL/images/logo.gif" style="margin: 0; padding: 0; border: solid 1px black" /> <div style="margin: 0; padding: 0; border: solid 1px ...

Internet Explorer/jQuery focus problem

If you open the following url in Internet Explorer (IE6/7/8) and hover over the "Find Portrait" link a popup shows up. When you try to select a value from the month or year dropdown, Internet Explorer loses focus and the popup closes. It shouldn't close. This happens only in Internet Explorer. jQuery v.1.3.2 is used for the events handli...

ELEMENT.style.color not working in IE

In a small web application I'm setting some text in a text box and its color using JavaScript. In the following snipped, el is my object. This code produces the correct effects under Firefox, Opera and Safari but no such luck under IE. I've been searching without success since most examples say to use x.style.color="color", which I'm ...

IE 7 and IE 8 do not render 2 consequent divs with float:left on the same line if there is a table in one of the DIVs

IE 7 and IE 8 do not render 2 consequent divs with float:left on the same line if there is a table in one of the DIVs which is 100% width + non-zero margin: <html> <head> <title>IE float left bug</title> <style type="text/css"> .inttable { width: 100%; margin: 9px; } .multicolumn { margin: 0px; border: 0px; padding...

jQuery slideToggle and div in IE

Hi Everyone, I'm having issues with jQuery's slideToggle and a div in IE. My code is below: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).re...

Flash under SSL

I have a difficulty to display Flash contents under SSL only by IE. Is this simply IE's bug? Firefox can display the Flash. ...

IE e.target.id is not working.

document.click = check; function check(e) { var obj = document.getElementById('calendar_widget'); if (obj != 'null') { if (e.target.id != 'show_calender') obj.style.display='none'; } } Error is in Internet Explorer: e.target.id is undefined. ...