internet-explorer-8

getting access is denied error on IE8

I have a html form (upload.htm) with a html file upload control inside of it. <form id="frmupload" name="upload" enctype="multipart/form-data" action="uploadhandler.ashx" method="post"> <input id="uploader" name="uploadctrl" type="file"/> </form> There is also one javascript method in the above page which goes like: function perf...

Mouseovers on image maps in IE8

I'm having a problem with IE (who isn't) executing my javascript. Are there any known issues with attaching mouseovers to image maps in IE8? I'm not seeing any similar posts. For instance, here is the HTML in one of my pages: <map name="Map" id="Map"> <area shape="poly" coords="2,575,389,637,388,19,1,74" alt="Main Page" onmouseover="...

YouTube player not working without continuous mouse movement over it

What can be the cause of the YouTube player not working (playing, buffering, firing api events) if I don't continuously move the cursor over the player? ...

Anchor <a> alignment off in IE8?

We have three anchor tags. When all on one line they display correctly in IE8: But when you separate the anchor tags onto separate lines for better code readability they do NOT appear correctly (there is a random extra "e" character and the alignment is off): Any ideas? ...

Problem with PNG transparent + Opacity on ie7 and ie8

Hello everybody, I am developing a project that uses the PNG transparent and Opacity but, the area has a surplus in IE7 and IE8 instead of being transparent, it is black, can someone help me? print of area [http://unistudio.com.br/clientes/transparent.jpg] Thanks ...

Changing IE Standards/Quirks mode at run time with an instance of InternetExplorer.Application

A similar question has been addressed with WebBrowser Control however I'd like to ask how to directly manipulate document modes with a VBS initialized/controlled instance of InternetExplorer.Application - or how to apply the registry fix in the above mentioned post to this scenario. Currently I'm employing a rather poor solution of simu...

Problem with Prototype Ajax.Request in Internet Explorer 8 prompting file download

Have a set of prototype-enabled ajax code that is working in all browsers other than IE. In IE8 the JSON, that otherwise gets returned to the onSuccess handler function specified in Ajax.Request, gets thrown into a file download stream which pops up and prompts for where to download. askForm = $('askForm'); var askUrl = '.'; var askPar...

Session not sticking for ASP.NET MVC2 in IIS7.5 in IE8

We have an ASP.NET MVC2 web application. For reasons outside the scope of this issue we decided to use the classic session state in the application. Following features are implemented in it related to session. Session_Start event handler in global.asax stores a variable in session. This is in relation to a workaround to detect session ...

FIX CSS <!--[if lt IE 8]> in IE

How to i can use this <!--[if lt IE 8]> <style type='text/css'> #header ul#h-menu li a{font-weight:normal!important} </style> <![endif]--> if i remove <!--[if lt IE 8]><![endif]--> Above code 'll run good in IE 8 but if i dont it dont run. Help me with fixed IE, if i want in above code in all IE version,. i want ...

IE8 alignment problem. Usercontrol in div wraps down. happens only in IE8, works fine in FF, chrome, IE7.

Hello, I have three usercontrols aligned side by side inside a DIV. It displays well in all browsers except for IE8, where the third usercontrol wraps down. This can be seen at: http://dealtown.com/UserTownPage.aspx?tid=153554 Widths seem to be right everywhere and there is enough space for the usercontrol to be displayed. I am missin...

NetBeans 6.9.1 demo (ScrumToys) - JSF 2.0 not rendered in Internet-explorer

In ScrumToys web-application (NetBeans JSF 2.0 demo) the .jsf page is not renderend in internet-explorer (I see the page source as XML). This works fine in 'proper' browsers, like Chrome and FireFox. I'm using the ScrumToys demo app provided by NetBeans 6.9.1 (running on GlassFish 3) with absolutely no changes. I'm using Internet-explor...

IE8 not allowing jQuery to give focus to textbox

I have jQuery which produces a popup window, as outlined here: http://www.jsfiddle.net/sLjfx/4/ The problem is that the following line: $('#txtValuation').focus(); doesn't seem to want to work in IE8. The popup will load, but the textbox doesn't have focus, where in Chrome the box does have focus.. Is there any work-around for it? ...

Alternative for $_SERVER['HTTP_REFERER'] PHP variable in MSIE

Hi, I have used $_SERVER['HTTP_REFERER'] variable in my application (used PHP). On Firefox above variables is wokring. But i observed that $_SERVER['HTTP_REFERER'] is not working on Microsoft Internet Explorer 8. I also got to know that HTTP_REFERER variable doesnt work on MSIE8 and MSIE7. Please give me your suggestions, how to use $_...

Any workarounds to this IE8 bug?

Hello, Is there any workaround to the IE8 bug where some elements seem to collapse the vertical margins and reset it when hover over the element? You can test the bug at: http://www.gilbertybolona.com/seguros/generales/ And this is a screenshot: d.pr/Plf8 All of the elements should be equally separated. ...

Exception ThreadAbortException on RedirectFromLoginPage

Hello people ! I'm having some trouble when people try to log on my system in IE8. Before tomorrow everything is fine, but now when they try to log on the line who call RedirectFromLoginPage method throws ThreadAbortException exception. After some investigating i found that if i change createPersistentCookie to false they can log norma...

CSS background opacity with rgba not working in IE 8

I am using this CSS for background opacity of a <div>: background: rgba(255, 255, 255, 0.3); It’s working fine in Firefox, but not in IE 8. How do I make it work? ...

JQuery .show() and equivalent CSS modification not working with IE 8

There are several posts relating to this, but none actually gives a solution. What actually happens is as follows: function LoadSpinner() { $("#divSpinner").css('display','block'); // could have done with .show() } function UnloadSpinner() { $("#divSpinner").css('display','none'); // could have done with .hide() } function OnClickMyBu...

Frame issue in Adobe LiveCycle Workspace with IE8/XP/Reader 9.4

When a user opens a form in Workspace, it renders in a separate frame, instead of in the normal position in the UI. This frame cannot be repositioned and obscures/blocks the user action buttons, preventing the user from continuing the process. No issue with IE7/XP/any version of Reader 9. Obvious workaround is using another browser, b...

HTML5 validated by W3C (Working in Chrome, Firefox, Safari) Black screen in IE8

Evening all. I have created a basic HTML5 site. It validates in W3C validator. It seems to work fine in Chrome, Safari, Firefox etc. However, upon opening the page in IE8 I just get a black screen. The site can be found at www.soultrainer.co.uk I assumed I had missed a bracket out or something. However I am receiving 0 error messages...

Why does 'string'[0] behave differently on ie8 + IIS7.5 than other browsers or local file?

Consider the following Html file: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <title>test</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> alert('' + '\'test\'[0]...