Advertisement
Guest User

Untitled

a guest
Aug 16th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.35 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  2. <script>
  3. $(document).ready(function(){
  4.   $('#hideshow').on('click', function(event) {        
  5.      $('.content').toggle('show');
  6.   });
  7. });
  8. </script>
  9. <div class="content" style="border:0;display:none">[Form id="1"]</div>
  10. <button id='hideshow'>Inscription</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement