Advertisement
cornetespoir

blacklist box part 1

May 9th, 2016
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!--this part goes under <head> -->
  2.  
  3. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  4.  
  5. <script type="text/javascript">
  6. $(document).ready(function(){
  7. $(".box").click(function(){
  8. $(".thing").toggle();
  9. }); });
  10.  
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement