I'm using a JS function to create a menu that uses a "style=..." tag in the <DIV> to format the menu.
The code works fine. What I want to know is if I can make the visibility to hidden on print...hence using the @media print type inline.
Possible? If so, how? Thx,
DreamerZ
Code:
document.write('<DIV ID="base" style="visibility:visible;Position : Absolute ;Left : 40% ;Top : '+YOffset+'px;Z-Index : 20;width:'+(menuWidth+barWidth+10)+'px">');
The code works fine. What I want to know is if I can make the visibility to hidden on print...hence using the @media print type inline.
Possible? If so, how? Thx,
DreamerZ