I'm using a Jquery to print the webpage (A div portion of it). It's working fine, But it also prints the Web Page Name, URL, Page Number and Date at page header and footer. How to remove these things from printable area?
Try the following css code snippet
<style type="text\css" media="print">
#myFooter, #myHeader
{
display: none;
}
This may also help you with your problem: Printing without header and footer