• Recognised By Dept of Tourism Govt of Karnataka
  • +91 9739899855


Why Choose Us?

Siddhartha Voyage Solutions

90643

Tours Place

6925

Customers

5326

Destination

45678

Tour Types

Indian Culture

Siddhartha Voyage Solutions

Airline Partners

Siddhartha Voyage Solutions

// When the browser is ready... $(function() { // Setup form validation on the #register-form element $("#package_enq").validate({ // Specify the validation rules rules: { name: { required: true, minlength: 3, maxlength: 60 }, email: { required: true, email: true }, mobile: { required: true, minlength: 10, maxlength: 13 }, message: { required: true, minlength: 5, maxlength: 600 } }, // Specify the validation error messages messages: { txtInput:{required:"Enter Correct Captcha"}, name: { required:"Enter Your Name", maxlength: 'Your Name Exceeded', minlength: 'Minimum 3 characters' }, message: { required:"Enter Your Message", maxlength: 'Your Message Exceeded', minlength: 'Minimum 5 characters' }, mobile: { required: "Enter Mobile Number", minlength: "Enter 10 digit mobile number", maxlength: "Enter 10 digit mobile number" }, email: "Enter Email address", investment_companyy: "Choose type of investment" }, submitHandler: function(form) { form.submit(); } }); }); $(document).ready(function () { $("#mobile").keypress(function (e) { if (e.which != 9 && e.which != 0 && (e.which < 48 || e.which > 57)) { $("#errmsg").html("Digits Only").show().fadeOut("slow"); alert("Only numerics are allowed"); return false; } }); $("#name").keypress(function (e){ var code =e.keyCode || e.which; if((code<65 || code>90)&&(code<97 || code>122)&&code!=32&&code!=46) { alert("Only alphabates are allowed"); return false; } }); });