b0rn-to-be-wild

Tutorial: POP-UP BOXES (v.1) SCRIPTS

Mar 3rd, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Paste the following code under <body> or in the bottom of theme coding:
  2.  
  3. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  4.  
  5. <script>
  6. $(document).ready(function(){
  7.  
  8. $( "#popup_button" ).click(function() {
  9. $( '#popup_box' ).toggle(10)
  10. $( '#open' ).toggle(10)
  11. $( '#close' ).toggle(10)
  12.  
  13. });
  14.  
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment