Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $("#printButton").click(function() {
  2. console.log('I am print button!');
  3. });
  4.  
  5. $("#closeButton").click(function() {
  6. console.log('I am close button!');
  7. });
  8.  
  9. $(".controlpanel .btn").click(function() {
  10. console.log('I am whatever button!');
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement