Question

I have the following tag that functions properly in each of the "modern" browsers except IE 7 and IE8.

<style type="text/css">
    noscript.show {
        display:inline;
    }
    noscript.hide {
        display:none;
    }
</style>
<noscript class="hide">Javascript is currently disabled in your browser.</noscript>

Can IE handle this on the noscript tag? If so, how?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top