Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $(document).ready(function(){
  2. var _slideLink = $('a.slide-btn');
  3.  
  4. _slideLink.each(function(i, link){
  5. if (!$(link).is('.active')) $(link).parent().next('.slideblock').hide();
  6. });
  7. _slideLink.click(function(){
  8. $(this).toggleClass('active');
  9. $(this).parent().next('.slideblock').slideToggle(300);
  10. return false;
  11. });
  12. });
  13.  
  14.  
  15. -----------------
  16.  
  17. <div class="img-block">
  18. <img src="images/photo-lorem.jpg" alt="Image" width="145" height="149" />
  19. <h5>Lorem Blah Blah.</h5>
  20. <p>I came to rock! <a class="go-btn2 slide-btn" href="#">&nbsp;&nbsp;</a></p>
  21. </div>
  22. <!-- Slide block -->
  23. <div class="slideblock">
  24. <p>I believe the children are our future</p>
  25. </div>
Add Comment
Please, Sign In to add comment