Advertisement
rharries

Untitled

Jan 13th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. "<div>
  2. <script>
  3. alert( 'Hello, world!' );
  4. </script>
  5. <script>
  6. $('button').click(function(){
  7. $('events').toggle();
  8. });
  9. </script>
  10. <button id='button'>Expand</button>
  11. <div id='events'>
  12. " + {%ListEvents1.EventList} + "</div>
  13. <style>
  14. #events {
  15. background: #ccc;
  16. display:none
  17. }
  18. </style>
  19. </div>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement