easy JS question
easy JS question
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- sparker0
there are a couple of ways around this.
first, design the page using semantic markup...using proper xhtml. then style it with css.
for printing, simply disable the css for the page. it will render a page that flows like a proper 'document' instead of a web site.
or, write a simple parser in php or perl and run the content through the parser and into a secondary output window.
this would allow you to strip unwanted content like navigation, banners, etc.
the parser idea would work even smoother if you developed the page semantically as well.
this is why standards design is a good choice. especially if the site needs to be printed frequently.