Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3.  
  4. $(".squirtle").hover(
  5. function () {
  6. $('.squirtlemore').show();
  7. },
  8. function () {
  9. $('.squirtlemore').hide();
  10. }
  11. );
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement