I'm trying to find a bug in an old ASP.NET application which causes IE8 to not be able to click on the following "button" area in our application:
<td
width="150px"
class="ctl00_CP1_UiCommandManager1i toolBarItem"
valign="middle"
onmouseout="onMouseOverCommand(this,1,'ctl00_CP1_UiCommandManager1',0,0);"
onmouseo...
Hey everyone,
I'm trying to inject some CSS that accompanies some other HTML into a C# managed WebBrowser control. I am trying to do this via the underlying MSHTML (DomDocument property) control, as this code is serving as a prototype of sorts for a full IE8 BHO.
The problem is, while I can inject HTML (via mydomdocument.body.insertAdj...
I have a site that has an IE8-only problem:
The code is:
var w = window.open(urlstring, wname, wfeatures, 'false');
The error is:
Message: Invalid argument.
Line: 419
Char: 5
Code: 0
URI: http://HOSTNAME/js_context.js
I have confirmed the line number of the code (the "Line" and "URI" are correct), and I understand in ...
As a developer, can I safely upgrade to IE8 and use its IE7 compatibility mode to test how sites look in IE7? For IE6, I have a virtual machine and it is quite inconvenient. I don't want to upgrade to IE8 and then have another virtual machine now for IE7.
Or is IE7 compatibility mode really different and I can't rely on that?
...
What is the simpliest way to set the IE7-Compatibility Mode mode in an ASP.NET application to deal with IE8 issues? Is it possible to set this via the web.config or must it either be set at the IIS or page level?
...
Update 4/8/09 - I'm into a new week with no progress and no answers from the Facebook forums. Not one response over there, which is pretty disappointing. I also cannot figure out how to put a bounty on this question, but I would really, really love to get this issue solved.
I have looked at many posts to see if this was posted befor...
Using silverlight I have always removed the Height and Width from the UserControl so that the user control would fill the viewport, no more and no less. Today I began testing with IE8 and observed that such is no longer the case, unless I view the page in compatibility mode.
I'm using the asp:silverlight server control to host the silv...
I'm having an issue with a strange version of IE8 which I have not come across until now. The version causing all the trouble with me is 8.0.6001.8702IC? Has anyone come across this version yet?
This funky version is breaking a lot of the websites I worked on, mostly asp.net 1.1 and 2.0 web sites. However, the [supposedly] final build...
Since I installed IE8 (Win XP) Visual Studio 2008 Pro stopped deebugging javascript.
When I set a breakpoint on a line javasscript code and start debugging , I doesn't get hit anymore. This worked well when I had IE7 installed. The code hasn't changed. There were no other system changes performed at the same time.
How can I solve this ...
The following JavaScript works on IE7 but not on IE8:
onclick=history.back(1) or history.go(-1)
Any suggestions on why this is the case and how to overcome it.
...
IE 6 and 7 didn't follow many of the w3 standards, like event handling, making it necessary to write code for the standards compliant browsers, and then write MORE code for Internet Explorer. Will IE 8 take us out of this dark age and stabilize web-development? Will it be easier to write one set of code that all browsers will display the...
In my current application i need to copy the content of one table into another... With setting innerHTML it works perfectly in FF... but not in IE8...
Here is the Code i used to copy in FF:
getID("tableA").innerHTML = getID("tableB").innerHTML;
// getID is a custom function i wrote to provide a shorter version of document.getElementByI...
I have an IE bug that I'm not sure how to fix.
Using jQuery I'm dynamically moving a menu to appear on an element on mouseover.
My code (simplified) looks something like this:
$j = jQuery.noConflict();
$j(document).ready(function()
{
//do something on the menu clicks
$j('div.ico').click(function() { alert($j(this).parent().ht...
Hi guys and gals
I am less than satisfied in my HTML/CSS/JS debugging of pages with IE6 and 7 specific bugs.
I am aware that IE8 has a Firebug clone, called 'Developer Tools' installed.
Is it possible to have IE8 installed (maybe on a VM, i don't mind), set it to compatibility mode (is there one for IE6?), then perform JS debugging a...
IE8 throws an "Error: Object required" message (error in the actual jquery library script, not my javascript file) when the switch statement in this function runs. This code works in IE6, IE7, FF3, and Safari... Any ideas? Does it have something to do with the '$(this)' selector in the switch? Thanks!
function totshirts(){
$('.shir...
Hi, all!
We had discovered strange behaviour of popups in IE8. In IE7 and IE6 our popup looks like this:
But in IE8 it has strange border which "blinks" for 5-6 times and looks like this:
Code which is used for showing this popup:
Browser.prototype.showPopup = function(someHtml) {
...
var popup = doc.parentWindow.createPopup();
...
I have some legacy javascript that freezes the tfoot/thead of a table and lets the body scroll, it works fine except in IE8 its very slow.
I traced the problem to reading the clientWidth property of a cell in the tfoot/thead... in ie6/7 and FireFox 1.5-3 it takes around 3ms to read the clientWidth property... in IE8 it takes over 200ms...
The leak is pretty easy to create. Place the HTML below alongside a list of large images named "TestImage0.jpg", "TestImage1.jpg",..."TestImage9.jpg". The page will leak memory (I used sIEve for testing) on every click of the page. If the resize css is removed, the page will not leak. Can anyone confirm that this is an IE8 problem, or th...
What's new in IE8 regarding to WebBrowser Control via interfaces or direct API calls? Is there any new extensibility feature or a new API?
...
I have a small website developed using VS2005 and mySQl, it's just 2 webforms and login page.
During the development and testing phase, me and my customer were using IE6, and it was looking fine, we didn't test with other browsers because it's a small application, and just a add-in for large desktop application.
The customer informed m...