Here is a variation on Eric's idea. But in this example, instead of
writing the CSS rule via Javascript, write a rule to *negate it*
inside a noscript tag.

-- in HEAD or a stylesheet...
#media-gallery ul li img {
   /* opacity *may* work better than display:none */
   opacity: 0.01;
   filter: alpha(opacity=1);
}

Then in the HEAD of you page, add a STYLE block inside a NOSCRIPT
block...

<noscript>
<style type="text/css">
#media-gallery ul li img {
   /* UNDO the opacity rule set previously */
   opacity: 1;
   filter: alpha(opacity=100);
}
</style>
</noscript>

Just one more idea.

/Kevin

On Apr 29, 9:58 am, Kevin Dalman <kevin.dal...@gmail.com> wrote:
> Hi Rick,
>
> Karl's suggestion seems the most elegant (assuming it works OK).
>
> ....

Reply via email to