Advertisement
kotvalera83

Untitled

Jun 28th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. $( "#menu-item-3160" ).mouseenter(function() {
  2. if ($(window).width() > 1000) {
  3. $( this ).addClass('current_page_item');
  4. $('.movieFree').show('400', function() {
  5.  
  6. });
  7. $( "#menu-item-3159" ).removeClass('current_page_item');
  8. $('.movieTv').hide('400', function() {
  9.  
  10. });
  11. };
  12.  
  13. });
  14. $( "#menu-item-3159" ).mouseenter(function() {
  15. if ($(window).width() > 1000) {
  16. $( this ).addClass('current_page_item');
  17. $('.movieTv').show('400', function() {
  18.  
  19. });
  20. $( "#menu-item-3160" ).removeClass('current_page_item');
  21. $('.movieFree').hide('400', function() {
  22.  
  23. });
  24. };
  25.  
  26. });
  27. $('.movieFree').mouseenter(function() {
  28.  
  29. })
  30. .mouseleave(function() {
  31. $( "#menu-item-3160" ).removeClass('current_page_item');
  32. $('.movieFree').hide('400', function() {
  33.  
  34. });
  35. });
  36. $('.movieTv').mouseenter(function() {
  37.  
  38. })
  39. .mouseleave(function() {
  40. $( "#menu-item-3159" ).removeClass('current_page_item');
  41. $('.movieTv').hide('400', function() {
  42.  
  43. });
  44. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement