Home » ES6 Page Printing

ES6 Page Printing

by Online Tutorials Library

ES6 Page Printing

In several cases, it is required to place a button on a webpage that prints the content of the webpage by using the actual printer. JavaScript helps us in the implementation of printing a web page.

When the print function window.print() in JavaScript gets executed, then it prints the current webpage. We can directly call this function simply by using it in the onclick event.

Syntax

Example

Output

After the successful execution of the above code, you will get the following output:

ES6 Page Printing

When you click on the Print button, you will get the following screen:

ES6 Page Printing


Next TopicES6 Modules

You may also like