IE8 losing session cookies in popup windows

This is ‘new’ functionality in IE8! Checkj out the IE8 blog below to read about it. http://blogs.msdn.com/askie/archive/2009/03/09/opening-a-new-tab-may-launch-a-new-process-with-internet-explorer-8-0.aspx IE8 can use multiple processes for handling an x number of IE windows. When you cross a process space, you loose your cookies (Asp.Net session ID seems to be retained over this process boundry). I personally think it’s … Read more

Internet Explorer 8 shows gradient instead of background image

Your .png image needs to have larger dimensions, at minimum 1×2 instead of 1×1. See: http://nemesisdesign.net/blog/coding/ie8-1x1px-semi-transparent-background-bug/ Internet Explorer 8 doesn’t perform the repeat of a 1×1 pixel semi-transparent background image correctly when any other element on the page is using the “-ms-filter” drective for the alpha transparency.

Respond.JS Not Working in IE 8

Same problem. I found out it’s my loading sequence problem, because I write CSS inline and then I call respond js script, so it looks like <script type=”text/javascript” src=”https://stackoverflow.com/questions/15127040/js/respond.min.js”></script> <link rel=”stylesheet” type=”text/css” href=”https://stackoverflow.com/questions/15127040/style.css” media=”screen” /> It should be <link rel=”stylesheet” type=”text/css” href=”https://stackoverflow.com/questions/15127040/style.css” media=”screen” /> <script type=”text/javascript” src=”https://stackoverflow.com/questions/15127040/js/respond.min.js”></script> ALWAYS link stylesheets or write inline CSS before … Read more

Border Radius for IE8

Try this: requires: <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”></script> <script type=”text/javascript” src=”http://malsup.github.com/jquery.corner.js”></script> Javascript: $(‘.box’).corner(); HTML: <div class=”box”>Hello</div> CSS: box{ width:150px; height:28px; padding:10px; } more examples: http://jquery.malsup.com/corner/

How can I get the stack trace for a JavaScript exception in IE 8?

In Internet Explorer 8 and earlier versions, you can use the error object to get the stack trace of a thrown exception. Here’s an example of how you can modify the code to log the stack trace: resolveWith: function( context, args ) { if ( !cancelled && !fired && !firing ) { firing = 1; … Read more

tech