Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <section class="main-content">
  2. <section class="resultwrap"></section>
  3. <section class="filterwrap"></section>
  4. </section>
  5.  
  6.  
  7.  
  8. $('html').on('click', '.backtoparam', function(e) {
  9.  
  10. console.log('returnToFilter');
  11. e.stopPropagation();
  12. e.preventDefault();
  13.  
  14. $('.resultwrap').hide();
  15. $('.filterwrap').fadeIn(300);
  16.  
  17. return false;
  18.  
  19.  
  20. });
  21.  
  22. <div class="main-content">
  23. <section class="resultwrap">
  24. One
  25. </section>
  26. <section class="filterwrap">
  27. Two
  28. </section>
  29. </div>
  30. <a class="backtoparam" href="#">Link</a>
  31.  
  32. <script>
  33. $(document).on('click','.backtoparam',function(){
  34. $('.resultwrap,.filterwrap').toggle();
  35. return false;
  36. });
  37. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement