Private Theater Booking

Description

Now you can book your Theatre for your self.

1,499.00

Date
Product total ₹1,499.00
Options total ₹0.00
Grand total ₹1,499.00
jQuery(document).ready(function($) { $('#save-pay-later-btn').click(function(e) { e.preventDefault(); let userEmail = $('#user_email').val(); let bookingDetails = $('#booking_details').val(); $.ajax({ type: 'POST', url: ajaxurl, // WordPress AJAX URL data: { action: 'send_booking_email', user_email: userEmail, booking_details: bookingDetails }, success: function(response) { alert(response.message); } }); }); });