Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $( "#menu-item-3160" ).mouseenter(function() {
- if ($(window).width() > 1000) {
- $( this ).addClass('current_page_item');
- $('.movieFree').show('400', function() {
- });
- $( "#menu-item-3159" ).removeClass('current_page_item');
- $('.movieTv').hide('400', function() {
- });
- };
- });
- $( "#menu-item-3159" ).mouseenter(function() {
- if ($(window).width() > 1000) {
- $( this ).addClass('current_page_item');
- $('.movieTv').show('400', function() {
- });
- $( "#menu-item-3160" ).removeClass('current_page_item');
- $('.movieFree').hide('400', function() {
- });
- };
- });
- $('.movieFree').mouseenter(function() {
- })
- .mouseleave(function() {
- $( "#menu-item-3160" ).removeClass('current_page_item');
- $('.movieFree').hide('400', function() {
- });
- });
- $('.movieTv').mouseenter(function() {
- })
- .mouseleave(function() {
- $( "#menu-item-3159" ).removeClass('current_page_item');
- $('.movieTv').hide('400', function() {
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement