Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. //При нажатии на ссылку в в левом меню всплывает нужный блок
  2. $('.jq-hide-block__link').click(function(e) {
  3. $('.jq-hide-block__link').removeClass('hide-block__link_active');
  4. $(this).addClass("hide-block__link_active");
  5.  
  6. var link = $(this).attr('href');
  7. $(link).show().siblings(".jq-hide-wrap-block").hide();
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement