internet-explorer

How to determine direction of navigation from IE WebBrowser (IHtmlWindow2 or Javascript)

I'm uisng the WPF Web Browser control and when it fires the Navigating event, the event args always contain NavigationMode.New. It should be set to NavigationMode.Back if the user chooses to 'Go Back' from the web control. So its off to the COM ActiveX control underneath to determine the direction of navigation. I've been looking at I...

ActiveX in IE. Dialog Box not showing XP Visual Style

I have an ActiveX control in IE (7). When it shows a dialog box, the dialog box is not showing in XP visual style. I have tried embedding manifests to no avail. Anybody got any idea? by the way, the dialog boxes were implemented using wtl. ...

Session is lost with login control in Internet Explorer 7

After logging in using the Login control the browser loses the session. This only occurs in Internet Explorer 7. Has anyone else run into this problem? If so, do you know a work around? ...

HTML Click Works in IE, not FireFox, Chrome

This has got to be something simple: I set up a frames page with two possible sources for the target frame based on a form with two options. I used the OnClick event to trap the user's click to show the appropriate page. It works fine in Internet Explorer 7, swapping the two source pages. FireFox 3 and Chrome show only the default so...

flash fscommands and javascript

I try get the mp3 flash player to work with my javascript on all browsers. All went well for first, but fast realized that my code doesn't work on MSIE. After trying to find out I found this in the reference code: <!--[if IE]> <script type="text/javascript" event="FSCommand(command,args)" for="myFlash"> eval(args); </script> <![endif]...

How can I determine which version of IE a user is running in JavaScript?

In some existing code there is a test to see if the user is running IE, by checking if the object Browser.Engine.trident is defined and returns true. But how can I determine if the user is running IE6 (or earlier) or IE7 (or later)? The test is needed inside a JavaScript function so a conditional comment doesn't seem suitable. Thanks ...

jQuery tooltip not working in IE

I am using the jquery tooltip and here is the code for it this.tooltip = function() { var xOffset = -10; var yOffset = -175; $("a.tooltip").hover(function(e) { this.t = this.title; this.title = ""; ...

How can I dynamically add an <object> tag with JavaScript in IE?

I have to add either an embed tag for Firefox or an object tag for Internet Explorer with JavaScript to address the appropriate ActiveX / Plugin depending on the browser. The plugin could be missing and needs to get downloaded in this case. The dynamically added embed tag for Firefox works as expected. The dynamically added object tag fo...

Inconsistent Whitespace Text Nodes in Internet Explorer

The following source code alerts the following results: Internet Explorer 7: 29 Firefox 3.0.3: 37 (correct) Safari 3.0.4 (523.12.9): 38 Google Chrome 0.3.154.9: 38 Please ignore the following facts: Webkit (Safari/Chrome) browsers insert an extra text node at the end of the body tag Internet Explorer doesn't have new lines in the...

Debugging JavaScript errors in Internet Explorer on Vista with UAC enabled

Consider the following trivial HTML page that throws an error: <html><head><script> throw new Error('oops'); alert('should not reach here'); </script></head></html> The user I am logged into Vista with is a member of both the Administrators and Debugger Users groups. If I run Internet Explorer on Vista as an administrator (right ...

Upload a file and get a headache - htmlfile: Access Denied

We have a page that lets users upload a file using the asp:FileUpload control. When the user tries to submit the form the get a client side javascript error "htmlFile: access denied". This only happens in IE 7 (not sure about 6) and FF is OK. Apparently this is due to a security setting that was introduced to IE with XP SP2. Fair eno...

Internet Explorer control uses IE7's own settings for ClearType and font size, can I override them?

I'm embedding an IE control into my C++ application. The problem is that although system-wide, ClearType is disabled, IE7 has its own separate setting, and unless I specifically disable that too, text inside the IE control will be antialiased while the rest of the app will not. The same goes for IE7's font size setting. It wouldn't be ...

jQuery validation formatting Issue in IE

In firefox, the error messages display as should. Just to the right of the element being validated. In IE. No matter what I do with the sizing of the labels/elements/errors, the error is always posted below the element, causing every other element to be pushed down. <p> <label for="handle"><strong>User Name</strong></label> <IN...

What makes IE 6 & 7 report 'Operation Aborted'?

Recently an application I wrote started not working on Internet Explorer. There has been no change to the underlying (ruby on rails) code. In IE 6 or IE 7, I can make one request (HTTP Post) to the app, but when I try to make a 2nd request, I get an "Operation Aborted" message. Everything works fine in firefox. The HTTP Request and Res...

YUI in IE6 & IE7

I'm using Bugzilla 3.2 RC2 (released 11/06/2008) There is some conditional logic deep in there that shows a 2nd dropdown when the 1st has a value of "Resolved". Works great in IE8, Firefox, and Chrome. It doesn't work at all in IE6 or IE7. No Javascript error and nothing happens. I'm wondering if anybody else has run into this iss...

Does Internet Explorer 8 support HTML 5?

Is there any HTML5 support in IE8? Is it on the IE8 roadmap? ...

Browser dependency problem in image display

Hi All In my page, I am displaying a report after the user selects some information. On a button onclick event, I am displaying an image which rotates itself to indicate to the user that the request is being processed. The image rotates in the Firefox but not in IE(it just displays the image). Please give me your suggestions. with re...

Why did my <OBJECT> fail to load?

I have an HTML document that is using to embed a control. In some cases, IE fails to load the control in the tag and loads my alternative text. Only problem... I don't know why it is failing. It doesn't show up as an error in the exclamation in the lower-left. I overrode the window.onerror method, but that didn't get fired. I see ...

How can I find the source of rogue Ajax requests on IE?

I've rewritten my family web site using Javascript (JQuery) making ajax calls to php on the back end. It's your standard "bunch of image thumbnails and one main image, and when you click on a thumbnail image the main image changes" kind of thing. Everything is working as expected when using Firefox, but on IE, when I click on a thumbnail...

What is the rate of firefox 2.0 and 3.0 adoption?

Part of the question: 1) How much of the market share does IE have? Opera? Firefox? 2) How many Firefox 2.x browsers have already been migrated to 3.x? For those who question whether this is programming related: This is for deciding what has large enough market share to actually be worth supporting for a web application -- given limite...