Guest User

Untitled

a guest
Mar 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $('.show-link').on('click', function() {
  2. $('.hidden-item').css('display', 'block');
  3. $('.show-link').css('display', 'none');
  4. });
  5.  
  6. $('.show-link').on('click', function() {
  7. $('.hidden-item').css('display', 'block');
  8. $(this).css('display', 'none');
  9. });
Add Comment
Please, Sign In to add comment