Tuesday, June 1, 2021

Slip 8. Write a jQuery code to print a page

 8. Write a jQuery code to print a page

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
   <title>Print a page using jQuery</title>
<script>
  $('btn.printPage').click(function(){
           window.print();
          return false;
});
 </script>
 <p>Click the button to print the current page.</p>
 <button onclick="window.print()">Print this page</button>
</head>
<body>
</body>
</html>

//Output






No comments:

Post a Comment

Slip 10. Write a jQuery code to make first word of each statement to bold.

  Slip 10. Write a jQuery code to make first word of each statement to bold.  <!DOCTYPE html> <html>   <head>     <scri...