Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // menu product hover change
  2. $('ul.pr_image_ul_cnt li:first-child').addClass('active_pr_abyz');
  3. jQuery('.subs_pr li a').hover(function () {
  4. $('.subs_pr li').removeClass('m_lin');
  5. $(this).parent().addClass('m_lin');
  6. $id_img = $(this).data("productid");
  7. // console.log($id_img);
  8. $('.pr_image_ul_cnt li').removeClass('active_pr_abyz');
  9. $('.pr_image_ul_cnt li.'+$id_img).addClass('active_pr_abyz') ;
  10.  
  11. });
  12. // menu product hover change
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement