Advertisement
eventsmanager

em_booking_success redirect

Sep 13th, 2023 (edited)
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. <script>
  3. jQuery(document).ready( function($){
  4. jQuery(document).bind('em_booking_success', function(response){
  5. setTimeout(function() {
  6. window.location.href = "/thank-you";
  7. }, 2000);
  8. });
  9.  
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement