Negative. If a user has
JavaScript turned off, then you're SOL.
The script works well but isn't totally foolproof, either. I tried to use it recently when making a
faux column layout in conjunction with
a sticky footer, and the background image I had applied to #wrap and repeated vertically ran over the footer. So in that case I made a special background image for IE6, without the transparency, and resorted to good ol' conditional comments:
Code:
<!--[if lte IE 6]>
<link rel="stylesheet" href="css/ie6.css" type="text/css" />
<![endif]-->
and
Code:
#wrap {
background:url("../images/wrap_bg2ie.png") repeat-y;
}
It's not ideal but the visual difference isn't
glaringly obvious. It's a judgment call.