MOON
Server: Apache
System: Linux host.sunshiene.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.1.34
Disabled: system, exec, mail, shell_exec, passthru, popen, proc_open, pcntl_exec, dl, ini_alter, ini_restore, symlink, link, chown, posix_kill
Upload Files
File: /home/clientsoftwares/.trash/assets/fronendbooking.js
setTimeout(function() {
  $('#alertmessage').fadeOut('slow');
}, 5000); 

$(document).ready(function() {   
$('.datepicker').datepicker({
        format: 'yyyy-mm-dd',
        autoclose: true,
        todayHighlight: true
});
	$('#t_trip_fromlocation').on('click', function() {
		if($("#t_created_by").val().length == 0) {
		   $("#ermsg").html('<div id="alertmessage" class="col-md-12"><div class="alert alert-success alert-dismissible"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><span style="margin-left: 40%;">Please login before trying to book..</span></div></div>');
		   setTimeout(function() {
		        $("#alertmessage").hide().data("active", false);
		    }, 10000);
		}
	});
  var input = document.getElementById('t_trip_fromlocation');
  new google.maps.places.Autocomplete(input);
  var t_trip_tolocation = document.getElementById('t_trip_tolocation');
  new google.maps.places.Autocomplete(t_trip_tolocation);
	

});