I'm trying to develop a CSS for print media. Everything is working fine except for hiding my jscript-based menu.
In my 4-HHP_Print.css file, I have the following definition:
.Nav {
display: none;
}
My ASP file has:
<DIV CLASS="Nav" ID="Nav">
<script type='text/javascript'>
function Go(){return}
</script>
<script type='text/javascript' src='/hvm/mnu.js'></script>
<script type='text/javascript' src='/hvm/menu_com.js'>/script>
</DIV>
However, the menu still shows up.
Is there a way in HTML without using CSS to detect the output media type? I was thinking that I could then use a conditional include for the jscript.
TIA
/rick