Guest User

Untitled

a guest
Jul 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3.  
  4. //Hide (Collapse) the toggle containers on load
  5. $(".audio").hide();
  6.  
  7. //Slide up and down on click
  8. $("a.play").click(function(){
  9. $(this).next(".audio").slideToggle("slow");
  10. });
  11.  
  12. });
  13. </script>
Add Comment
Please, Sign In to add comment