Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script type="text/javascript">
  2. jQuery(document).ready(function() {
  3.  
  4. // Set step
  5. var step = 1;
  6.  
  7. // Add event
  8. $(document).on('click', '.add-event', function(event) {
  9. event.preventDefault(); $el = $(this);
  10.  
  11. // Open modal
  12. lexmodal.open($el.attr('href'), null, function() {
  13.  
  14. // Set step
  15. step = $el.attr('data-step');
  16.  
  17. // Marku...
  18. alert('You can do shit for step ' + step + '.');
  19.  
  20. });
  21. });
  22.  
  23. });
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement