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.
window.print();
<html> <head> </head> <body> <center> <h1>Hello World :) :)</h1> <h2>Welcome to rookienerd</h2> <h2>Click the following print button to see the changes</h2> <input type = "button" value = "Print" onclick = "window.print()"/> </center> </body> </html>
After the successful execution of the above code, you will get the following output:
When you click on the Print button, you will get the following screen: