Guest User

Untitled

a guest
Dec 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <span id="show-more">ЧИТАТЬ ПОДРОБНЕЕ</span>
  2. <span id="show-less">Скрыть</span>
  3.  
  4. $('#show-more-content').hide();
  5.  
  6. $('#show-more').click(function(){
  7. $('#show-more-content').show();
  8. $('#show-less').show();
  9. $(this).hide();
  10. });
  11.  
  12. $('#show-less').click(function(){
  13. $('#show-more-content').hide();
  14. $('#show-more').show();
  15. $(this).hide();
  16. });
Add Comment
Please, Sign In to add comment