Customize the best tours in Maheshwar by our local travel experts according your needs and budget. Find City taxi, Outstation cab, Hotel, Food, Local Activities in JagGhoomiya Tours
jQuery(document).ready(function($) {
// Trigger the Sales contact form when 'Chat with Sales' is clicked
$('#chat-with-sales').on('click', function(e) {
e.preventDefault();
// Show the sales form (you can style and customize this form as needed)
$('#sales-form').toggle(); // Toggle visibility of the form
});
// Trigger WhatsApp chat for support team when 'Chat with Support' is clicked
$('#chat-with-support').on('click', function(e) {
e.preventDefault();
// Open WhatsApp chat with the support team
window.open('https://wa.me/918959090480?text=Hello,%20I%20need%20support', '_blank');
});
});