Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within HTML Pages with CSS and JavaScript
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
HTML Pages with CSS and JavaScript
appending signature during print
Govinda Gopala
Greenhorn
Posts: 18
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
guys i hav a situation
i want to print a form(
jsp
)
during printing a signature has to be appended
this should not be visible in the jsp(normal viewing)
only during printing this has to be appended
how to do this
Swastik Dey
Bartender
Posts: 2270
20
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Have a div where you display your signature, initially hidden
<div id="sigdiv" sytle="display:none">place for signature</div>
on click of print button , before you print make the div visible
document.getElementById("sigdiv").style.display="";
Swastik
Bear Bibeault
Sheriff
Posts: 67752
173
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
You can use CSS to make element visible only during printing.
Nothing at all to do with JSP, so this post has been moved to a a more appropriate location.
[
Asking smart questions
] [
About Bear
] [
Books by Bear
]
Eric Pascarello
author
Posts: 15385
6
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
The HTML in the head
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
The signature HTML
<div id="sig">FOO</div>
The regualr CSS
#sig{ display: none; }
The print.css
#sig{ display: block; }
Eric
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Can I have Controlled Prinitng in JavaScript
Print option on every page
Losing Session Data!!!
Printing Reports
Printing from a J2EE app
More...