January 10, 2008
Note to self: IE6 likes to cache AJAX requests, and this can be a bad thing if other data on the page that will affect the result of the request has changed.
You’ll see this if you have two fields on a page that both contribute to a result, but only send them to the […]
Categories: javascript |
Tags: ajax, ie6, internet explorer | No Comments »
January 2, 2008
Note to self: remember to use !important when trying to deal with text running off the page in print versions of pages in IE6.
Basic steps to follow:
EITHER have separate print and screen stylesheets …
<link rel="stylesheet" media="screen" type="text/css" href="styles.css" />
<link rel="stylesheet" media="print" type="text/css" href="print.css" />
… OR declare separate screen and print rule sets in a […]
Categories: css |
Tags: css, ie6, print stylesheet | 1 Comment »