Javascript Open Window Print

by top54u.com on 08 Jul, 2008
   
   

In Javascript, DOM object window provides the access to a function called print that allows you to open the window print dialog box to take out the prints of the currently opened web page. Javascript window object refers to the window of web browser displaying the web page. window.print() method calls the printer dialog box that displays the default printer settings and preferences available on the client’s system.

 

Syntax to Open Window Print using Javascript

 

window.print();

 

Above lower case syntax is used to open the window print dialog box using Javascript code.

 

Example of Javascript Open Window Print

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>Javascript Window.Print</title>

 

<style type="text/css">

a { font-family:arial;
font-size:12px;
color:#ff0000;
text-decoration:none;

}

</style>

</head>

<body>

<a href="javascript:window.print();">Print this page</a>

</body>

</html>

 

You can use the javascript:window.print(); or simply window.print() to open the print dialog box of client’s system. Javascript: prefix is used to overcome the issue of accessing the print function of window object in different web browser and lower to higher versions. You can call the print function through the href attribute value of HTML <a> anchor tag or onclick event of input type button.

 

Javascript Window Print Landscape

By Default window print function retrieves the default page settings for printing as portrait orientation of the page. You can change the orientation to landscape using the preferences button of print dialog. Click on preferences button, it will open the printing preference setup. Select the landscape radio button option of orientation properties to print the web page as landscape. You can also change the Paper Size, Paper Type and Print Quality in the printing preferences of window print dialog box.

Spotlight.....

Currently rated 2.3 by 3 people

  • Currently 2.333333/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , , , , , , ,

Add comment


(Will show your Gravatar icon)  

  Country flag

[b][/b] - [i][/i] - [u][/u]- [quote][/quote]



Live preview

10/14/2008 1:06:59 PM




related videos.....
recent posts.....
top54u ezines.....