internet-explorer

Opening downloaded TIFF files in browser window

Hello all I am having an issue related to downloading files and showing in browser.When user clicks on file (basically a URL) it downloads a file into a folder and shows the file in browser in a new window. I am able to show PDF in window but when it comes to tiff files the browser opens a blank window and it redirects control to OS and...

disable scroll bar in IE

Can I disable vertical scroll bar in IE. ...

css special IE7 tag

*html .... (IE6) html > body ....(IE7/FF) * html is special tag for IE6. Does IE7 has something too? i need just some small css detail in IE7. Just for IE7 without FF. ...

A univsersal createPopup() replacement?

Currently createPopup() is only supported in IE (See http://help.dottoro.com/ljsxcrhv.php). Is there a univsersal createPopup() replacement? Or is conditional code required based on browser detection? Hopefully, I am looking for something that 1. not only provides the same functionality, but 2. has the same interface or at least cou...

"window.location.history.go(-2)" possible in major browsers?

As the title says, will this code work and will it work in major browsers? I ask because currently I have no resources to test it, so I would appreciate some help on this. Here is what I have (not tested): setTimeout(window.location.history.go(-2), 5000); Thanks ...

Images in fancybox go out of frame in IE

Fancybox works properly in all other browsers. Only IE can't show it properly. The problem is clearly illustrated in the following screenshots: http://img840.imageshack.us/img840/481/subscreens.jpg I can't figure this out. IE seems to work fluently on fancybox original website's examples. ...

Jquery's :not(:first).hide() not working in Internet Explorer

I'm using JQuery 1.4.2 for an accordion effect on my website. All but one category start hidden. This works in Chome and recent Firefox, older versions of Safari and all Internet Explorer versions however start with EVERYTHING hidden. Is there an incompatibility with those browsers or is something wrong with my code? $(document).ready(f...

What are some automated test suites for testing IE 6,7,8 compatibility for a website?

I'm looking at several websites that have complex web-clients. They have been developed using Chrome/Safari/Firefox; I would like to test them for compatibility with IE 6/7/8. Are there any automated tests/tools/test suites that will help with the work? Preferably tools that are specific to this kind of problem - and will stress the kin...

Setting focus to already opened Tab of Internet Explorer from C# program using .net 2.0

I have two questions. How can I set focus to already opened Tab of Internet Explorer from C# program using .net 2.0. How can I open a new URL in a new Tab of running Internet Explorer instance (not in new window.) from C# program. I can only use .net up to 2.0. Your help will be appreciated. ...

How to change cursor style on element with 'contenteditable' attribute in IE?

I am trying to change style of cursor on element that has 'contenteditable' attribute set to true in IE. <div contenteditable="true" style="cursor:pointer;"> text </div> I have tried do that using inline styling like in example above, also with css file and by javascript but with no luck. All my solutions work in FF without ...

TWebBrowser and IE version

When I asked this question I accepted the answere because it made sense and the documentation pointed was right. Testing a machine with IE6 against other one with IE7 with the same compiled executable using TWebBrowser the behaviour was indeed as pointed in the answere. Now I put the answere in doubt again, in a machine with IE8 that s...

Getting x and y position of mouse pointer relative to an element.

Hi can anyone help with this? When I move the mouse pointer of a element, I would like to retrieve the x and y positions relative to the <div> E.g - when I put the mouse pointer at the top left point of the div I would expect to get an X of 1 and a Y of 1. This needs to be compatible for Internet Explorer Thanks all for your time. ...

Fire a click event in a parent window from a popup

Hi, I can successfully fire a click event in a button on a parent window from a popup in FF and Chrome... however nothing happens in IE. Any ideas? window.opener.document.getElementById(Client ID Of Button).click(); ...

WPF WebBrowser Control: What browser does it use ?

Hi, Does the WPF WebBrowser control always use Internet Explorer or does it use the default web browser on the system ? Regards, MadSeb ...

Delete certain form data (Selectively) on IE8 or Firefox

I would like to delete certain autocomplete suggestions (from history) on form data on IE8 (as well as in firefox). on the username of a webpage I mistyped my userid and it is coming every time I try to type my name. The autocomplete gives two items one my right id and second the wrong id which I did once in the past How do I selectiv...

CSS positioning with IE8 - expressions not supported

Hello, I have the following code: <html> <head> <style type="text/css"> DIV#left { z-index: 100; position:absolute; left:0px; top:0px; width: 100px; height: 100px; background-color: #e7e7e7; } DIV#right { z-index: 100; position:absolute; left:100px; top:0px; width: 100px; height: 100px; background-color: #e20074; } </style> </head> <bo...

debugging javascript error in ie7?

All I get is this: An error has occurred in the script on this page line: 31 char: 5 error: expected identifier, string or number code: 0 url: http://example.com It's difficult to find that line since I have several external and internal scripts. How can I debug this? (By the way, the scripts have no errors in chrome or firefox or ie...

Internet Explorer 9 expected release date?

What would be an educated guess on the release date for Internet Explorer 9? Comparing release histories could indicate March 2011, though I don't know if there are other factors at play too. http://en.wikipedia.org/wiki/Internet_Explorer_8#Release_history http://en.wikipedia.org/wiki/Internet_Explorer_9#Release_history I'm asking t...

301 Redirect called from Flash crashes Internet Explorer

I have Flash game at my site. There is a button "Download full version" that calls Javascript function: function download() { window.open('http://mysite.com/goto/game1'); } http://mysite.com/goto/game1 redirects via 301 redirect in .htaccess to http://mystatisticsite.com/goto/mysite/game1 redirects via PHP header('Location: '.$do...

Deciphering HEX RGBA for MS-filters in CSS

I'm writing styles for a page where I'd like to use rgba colors on the background of some list items. I've used the CSS background property along with rgba(146,138,118,.4) to define my transparent background color. Now I'm trying to cover my bases with IE support by using the technique of an ms-filter as described in this article. (see ...