$(document).ready(function() { $('#myModal').on('shown.bs.modal', function () { $('#myInput').trigger('focus') }); var owl = $('.owl-carousel'); owl.owlCarousel({ items:3, loop:true, margin:10, autoPlay: 3000 }); $( "#datepicker" ).datepicker(); $( "#targetDate" ).datepicker(); $("#bookurslot").click(function(){ $(this).hide(); $(".user_form").hide(); $(".getback").show() }); $(".formbtn").click(function(){ $("#bookurslot").show(); $(".user_form").show(); $(".getback").hide() }); });