I am having ASP .Net application which is running perfectly in IE 7.0 but as due to session sharing in IE 8.0 (also in case of new window), application is giving unexpected behavior as session can be modified by other window.
Some quick facts
I know the -NoCache option and open New Session file menu item of IE 8
I just wanted to know ...
In a jquery hover event I use the following code to drop down a menu:
clearTimeout(hTimeout);
$('#lowermenu').queue('fx', []);
$('#menucenter .current').removeClass('current');
$(this).children('a').addClass('current');
dTimeout = setTimeout(function($item){slidelower($item)}, 200, $(this)); // This is the bad line
function sl...
I've checked this link, but I do want to know what if I don't update jquery version to 1.3 (current 1.2.6) and change my js code, which part of my code should be changed?
var cnt=($("input[name*='cntidd']").size())-1;
var in_id=$("input[name*='iId']").eq(cnt).val();
var fee=$('#total').val();
$("input[id*='item_no]").each(function (i...
I'm having trouble with some JavaScript that I've written, but only with Internet Explorer 8. I have no problem executing this on Internet Explorer 7 or earlier or on Mozilla Firefox 3.5 or earlier. It also executes properly when I use compatibility mode on Internet Explorer 8.
What I'm doing is overriding the Enter keystroke when a use...
I'm trying to launch a popup window from a Javascript function and ensure it has focus using the following call:
window.open(popupUrl, popupName, "...").focus();
It works in every other browser, but IE8 leaves the new window in the background with the flashing orange taskbar notification. Apparently this is a feature of IE8:
http://ms...
I have some mark up and I am trying to have the "hints for some input" light up when the accosicated text input has focus. I am trying to use the focus pseudo class along with a sibling selector. If i just use one or the other it works just fine. However, when combining them in IE8 it apears as if that style doesn't get updated when you ...
Hi,
it seems that since I have installed Internet Explorer 8 my .Net C# project WebSetup MSI has tripled in size to 6.5 megs. We also get an error message saying that ieframe.dll could not be registered when running the MSI. Has anyone else experienced this?
Cheers, Jamie
...
Is "doScroll" still supported by Microsoft in IE8? I can't get it to work at all.
Here's a test page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<div id="a" style="overflow:auto; width:300px; height:300px; border:1px solid black;">
<div style="widt...
I'm trying to use the jQuery script prettySociable, which works fine in all other browsers except for IE - am using IE 8 and have tried testing it in compatibility mode to no avail. I've tried to figure out the errors, but can't seem to get them to work..
http://www.souliejolie.com/2010/test.php
^^ the 'demo' page which craps out in IE...
I have an embedded web server with a self-signed SSL certificate. After I get past the Web Browser's warning about the SSL Certificate being self signed, I am seeing a difference between IE8 and Firefox 3.5.5.
In IE8, if I try to download a PNG file, it will download every time.
In FireFox, it will give me an error every other time.
...
I have an image with this markup
<img src="wedding_00.jpg" width="900" height="600" />
And I am using CSS to downsize it to 600px width, like so:
img {
max-width:600px;
height:auto;
}
Can anyone explain why this method works in Compatibility mode, but not in standard mode? Is there a way I can modify my CSS so that it will ...
I want to use a JavaScript only for all IE version 6,7 and 8.
...
I've got an element, an image, defined as instrument in css and for the life of me I cannot get it to properly display a png with transparency in IE7 or IE8 -- works fine in Safari and FF. I really don't care about IE6 since it would need some sort of hack -- 7 and 8 should just work though, right? There shouldn't be anything else need...
I'm trying to view a surveillance camera system. The remote access is available through a website, and that website seems to need to download a CAB file full of goodies to let me view the cameras.
On some of my systems this install process goes over nicely.
On a few, particuarly the ones with slower Internet, I get into an endless-l...
hey guys: I've been building a website with some animated rollovers, where I animate the background image to give a colour fade effect. It works fine in FF3, Safari, chrome, but IE8 throws the "undefined is null or not an object" error.
Full text:
Message: 'undefined' is null or not an object
Line: 22
Char: 16
Code: 0
URI: http://www.p...
So I have an C# Form application that utilizes the web browser component. Apparently Response.Write(Request.Browser.Version.ToString()); returns "7.0" when I visit my test page from the web browser component.
How can I make this web browser component use IE8?
Thank You!
...
I am trying to create this html elements dynamically on the onload of my page,however;when I run it the code wont work on IE8 but okay in firefox,safari,and others.
function getmovie() {
var container = document.getElementById("container");
if (!container)
return;
var object = document.cr...
my site was automatically being injected with in the header when I browse using IE 8. I set my IIS with a custom header to force it to IE=8, didn't work. I set the meta tag in the header, it shows up in the source, but was being shown before it. didn't work. What else can i do?
...
Last night, I experienced a strange behavior in IE8 as I saw two noticeably different layouts of a page that's being hosted on separate servers. On my local web server, the header markup looked as expected with its left aligned logo and right aligned and stacked utility links, all of which displayed on a centered page. On a staging web...
I have un-installed and re-installed IE8 a few time and javascript will not run.
I have checked jQuery and numerous sites, and run simple examples like alert("hi"); nothing works. The ie8 developer tools under script debugging says
"Breakpoint cannot be set in this location, the code in the document is not loaded"
This also happens wh...