Guest User

Untitled

a guest
Oct 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(function() {
  2. $('.dogs #ellie').click(function() {
  3. console.log('Ellie is the best dog');
  4. });
  5.  
  6. $('table#sales thead th td').hover(function() {
  7. $(this).toggleClass('active');
  8. });
  9. });
Add Comment
Please, Sign In to add comment