internet-explorer-8

How can I debug an IE8 crash?

Hello all, Is there a good way to debug the cause of an IE8 crash? We have a web site that a simple AJAX feature: A text box with corresponding button, onclick event fires JS event. JS event calls a .NET service (code below) The code works fine in FF, Chrome, Opera, Safari, IE7, IE8 running in compatibility mode. However running IE...

Action is not calling in struts2 while clicking on the link at the second time.

Hi, I am new to struts2. I have page to display the list of elements. Each element contains the link to open the another window to show the related information. First while clicking on that link its fetching deatils from db and working correctly. but second time it is showing previously shown data. the same thing is working in IE 7 corr...

nested selector of CSS doesnt work in IE8 but works in IE6 ?

Hi The below code works fine in IE6 but not in IE8 may i know what is causing the problem ? <html> <head> <style type="text/css"> .dataSection { font-weight:bold; color:#fff;font-family:Verdana, Arial, Helvetica; text-align:left; background-color:#004E82; padding:2px 4px 2px 2px; } .dataSection.header { ...

IE8 only renders the first class-change in a jQuery CSS drop-down menu

In http://www.scherer.nl/nieuw (the /nieuw part will be removed when the site is ready) the drop-down submenu's on the left should shift up their background image when hovered over, so the hovered item becomes red i.s.o. orange. With jQuery I'm using toggleClass to add a class 'hover' to the hovered menu-item. The CSS makes the backgroun...

<ajaxToolkit:ReorderList> is not draggable in IE8 and chrome.

ajaxtoolkit ReorderList is not working in IE 8.Can not drag it in IE 8.But It is working in IE 7 and Fire fox.Please help me.I want to make it to work in IE 8.That is my client requirement.I have done lot of developments on this an it is not possible to turn to another one. ...

Why is this site breaking in IE8?

This site works fine in IE6 and 7, as well as other browsers but now in IE8. I don't have a copy to test it out myself and am wondering if you guys could help. http://x.brantonprojects.com/clientloop/LINC/Website/index.html Thanks ...

jquery animations die on ie8

Hello everyone. My background is flash animation/development and I decided to start working on my first html+css+js site. The site works great on both platforms using FF, Chrome, Safari. But on ie8 the animations do not run smoothly. I narrowed the bug but have no idea how to fix it. The bug appears to be the plugin.js files that I call...

IIS + IE8 + Word 2007 (doc with macro)

Hi! I discovered a problem related to Word documents (with macros) hosted in an IIS virtual directory. Here is an example of a document with macro: http://sites.google.com/site/wjatjoi/ExemploErro42482.doc After countless tests, I got the problem with replicable success on any computer. It occurs in a very particular situation: 1 - ...

jQuery causing 'missing' text in IE?

Really weird issue I've come across now. I'm using jQuery to make some 'widget' windows (drag & resize). They work beautifully in everything but IE (big surprise, right?). They also do everything they're supposed to in IE (drag, resize, dim on moving, return to proper opacity on release). However, in IE, when you 'let go' of the window...

Marquee In ASP.NET - IE8 Problem - Reset Marquee At The Middle Of Show

hi my dear friends : i am so mad about marquee in ie 8... i am using asp.net web application... i do not know what is going on about that ?!!! when i browse my asp.net page in browser (ie 8) so Marquee Is Reset At The Middle Of Show. but in fire fox every thing is ok. how can i fix that ? or is there any other way for doing this jo...

Strange IE8 problem with a select that runs AJAX

I've got a strange error with IE8 and postcode lookups. It may not be postcode lookups as such that's causing it - just an AJAX call that modifies a select. I've set up a test page here. If you click on Find Address, and then double click (quite quickly) on one of the addresses that is within the boundary of the red-bordered div, you see...

embedding flash using AC_FL_RunContent slighlty crops flash in IE8 only

Hi Has anyone encountered a bug when using AC_FL_RunConten to embed flash? In IE8 it seems that the flash is slightly cropped on all 4 sides. Is there a known workaround? ...

ie8 page hangs before load complete

I am experiencing and issue only in IE. In FF, Safari, and Chrome, behavior is as expected. After running the IE8 dev tools profile on the pages, all signs point to the jQuery .css() function, although the details in the call stack make it impossible to find the culprit. I get no filename or line number whatsoever. The site is http://...

Why isn't this simple bit of jQuery getJSON working in IE8?

I've got a very standard AJAX request: $.getJSON('/products/findmatching/38647.json', {}, function(JsonData){ var tableHtml = ''; var x; for (x in JsonData.matchingProds) { var matchingProd = JsonData.matchingProds[x]; var buyMessage; if ( x == 0 ) { buyMessage = 'Buy Cheapest'; } else { buyMessag...

IE8 says it "cannot display the webpage" when using a dynamic PlaceHolder

I have a ASP.NET page using a PlaceHolder. Grids are build programmatically and added to this PlaceHolder when the page is run. Example: ASPX Code: <asp:PlaceHolder ID="myPlaceHolder" runat="server" /> Code behind: foreach (var country in Tables.Countries()) { var nGrid = BuildGrid(country.Code); if (nGrid.Rows.Count > 0) { ...

Text links using Raphael in IE8

I'm having a lot of trouble getting a simple text link to work in IE8 using Raphael. I want text that behaves like a normal link. I've included some code below that I have been playing with. Got the cursor to change to a hand by using the hover function and document.body.cursor The click function only works when clicking on actual tex...

How to make elements appear under a <UL> in Firefox & IE8?

I recently applied the answer supplied for the question "How can I get a <ul> to be evenly spaced across the content area it exists in?", to my list of tabs. This worked fine for me, but any elements after the list of tabs appeared to the right of the <ul/> element, instead of under it. I applied a clear: both; rule to the CSS for my <u...

Why does all browsers do not set all output perfectely ?!!?

This is an html page : <html> <head> <title> Frame Set </title> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <!--<script type="text/javascript" src="frame.js"></script>--> <link rel="stylesheet" href="frame.css" type="text/css" media="screen" /> <script language="JavaScript" type="text/javascript"> $(document).rea...

Disabled button still clickable in IE8 with jQuery.live('click') event

Sigh I keep getting strange problems with IE 8. I have this <input name="Btn_Edit" disabled="disabled" id="Btn_Edit" type="button" value="Edit"/> $(function () { $('#Btn_Edit').live('click', function () { alert('hi'); }); }); So in every other browser this alert would never get trigger as my button is disa...

Microsoft JScrtip runtime error using window.location in IE8

Hi, I'm having a weird error in my code. I'm getting an error: Microsoft JScript runtime error: object doesn't support this action. I'm using fullcalendar and on an event click I want to open the even details in the same window. Oddly enough, this works fine in Chrome. I also want to note that on an XP system it works fine both in IE8...