Guest User

Untitled

a guest
Apr 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script>
  2. $(".content-item").hover(
  3. function () { $(this).addClass("bounce") },
  4. function () { $(this).removeClass("bunce") }
  5. );
  6. </script>
  7.  
  8. <div class="content-item">
  9. <div><span>Lorem ipsum do sit</span>
  10. <div class="bye_cruize wow">
  11. <a href="#"><span>BYE CRUIZE</span></a>
  12. </div>
  13. </div>
  14. </div>
  15.  
  16. $(".content-item").hover(function () {
  17. $(this).children().children().toggleClass("bounce");
  18. });
Add Comment
Please, Sign In to add comment