I have a website where users click a read more button so that they can view the rest of the information on the page. I am curious how I could make it so that users do not have to print each page seperately. I would like to be able to make it so that I could have a script that print’s related pages. I’f anyone could help me out and point me in the right direction it would be greatly appreciated. I need this functionality to work in all browsers.
Thanks
What you will need to pull this off is a stylesheet that utilizes media styles. It is basically like having two seperate stylesheets; one for printing and one for viewing. In order to be bandwidth conservative leave the
printareaempty until the request is made. On the request event fill in theprintareawith the whole print you with to do. I would suggest you look into jQuery and their load and ajax requests for this.