Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $(document).ready(function() {
  2. $(".image").mouseover(function(){
  3. $(".hover").show();
  4. })
  5. $(".image").mouseout(function(){
  6. $(".hover").hide();
  7. });
  8.  
  9. $(document).ready(function() {
  10. $(".image").mouseover(function(){
  11. $(".hover").show();
  12. })
  13. $(".image").mouseout(function(){
  14. $(".hover").hide();
  15. });
  16. })//added
  17.  
  18. $(document).ready(function () {
  19. $(".image").mouseover(function () {
  20. $(".hover").show();
  21. }).mouseout(function () {
  22. $(".hover").hide();
  23. });
  24. });
  25.  
  26. $(document).ready(function() {
  27. $(".image").mouseover(function(){
  28. $(".hover").show();
  29. });
  30. $(".image").mouseout(function(){
  31. $(".hover").hide();
  32. });
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement