Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

jQuery: Print a page

jQuery Practical exercise Part - I : Exercise-8

Print a page using jQuery.

HTML Code :

<body><div>
<a class="printPage" href="#">Print</a>
</div>
</body>

Sample solution :

HTML Code :


<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Print a page using jQuery</title>
</head>
<body>
<div>
<a  class="printPage" href="#">Print</a>
</div>
</body>
</html>

JavaScript Code :

$('a.printPage').click(function(){
           window.print();
           return false;
});

See the Pen jquery-practical-exercise-8 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Create a Zebra Stripes table effect.
Next: Limit character input in the textarea including count.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.