Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to hide Jscript menu for printing

Status
Not open for further replies.

dswitzer

Technical User
Aug 2, 2002
298
US
I have a cool javascript function in an include statement with my header (graphics,etc).

When I print, I want to eliminate the header graphics as well as the menu -- I have been able to eliminate images/text where needed with my print.css file using a "noprint" class -- but can't figure out how to eliminate the script. I have tried including the class="noscript" in the intial script section, as well as in each image section -- but no luck yet. The menu works fine (code truncated here) and the class="noscript works fine in an image tag -- Ideas appreciated:

Code:
	<script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; class=&quot;noprint&quot;><!--
	var animMenu =
	[
		[null, 'Calls', 'url', 'target', 'description',  // a menu item
			['<img src=&quot;ThemeOffice/new.gif&quot; / >', 'New', null, null, null],
			['<img class=&quot;seq1&quot; src=&quot;ThemeOffice/open.gif&quot;   / ><img class=&quot;seq2&quot; src=&quot;ThemeOffice/openshadow.gif&quot;  / >', 'Open', null, null, null],
			[null, 'Close', null, null, null],
			_cmSplit,

etc.etc.etc.

	cmDraw ('demo3', animMenu, 'hbr', cmThemeOffice, 'ThemeOffice');
	--></SCRIPT>
 
I can use <div class=&quot;noprint&quot;>.....</div> to hide it altogether.....So is there a way to determine whether media=screen or print and work in an If..Then stmt?

Just thinking...
 
Wrap the script in a DIV tag.

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top