[jQuery] Re: Show hide and print

2009-03-04 Thread Sean O
You're best served doing that simply with a CSS print stylesheet. Just add: link rel=stylesheet type=text/css media=print href=print.css / and set all elements you don't want to print to display: none. Here's an Oldie-but-Goodie guide to creating a nice one:

[jQuery] Re: Show hide and print

2009-03-04 Thread rayfidelity
Jquery show or fadein overrides the print stylesheet that's the whole problem. On Mar 4, 2:56 pm, Sean O seanodot...@yahoo.com wrote: You're best served doing that simply with a CSS print stylesheet. Just add: link rel=stylesheet type=text/css media=print href=print.css / and set all

[jQuery] Re: Show hide and print

2009-03-04 Thread Sean O
Have you tried overriding the override? i.e. #gototop { display:none !important; } SEAN O rayfidelity wrote: Jquery show or fadein overrides the print stylesheet that's the whole problem. On Mar 4, 2:56 pm, Sean O seanodot...@yahoo.com wrote: You're best served doing that simply