I have this page with a booking widget and date picker here:
(Book your stay)
The following code is set to try and prevent the keyboard from coming up on mobile devices when choosing the datepicker.
<script type="text/javascript">
jQuery(function() {
jQuery( ".hasDatepicker" ).hasDatepicker({
}).attr('readonly','readonly');
});
</script>
This is working on desktop but not mobile devices. Does someone know how to prevent the keyboard from popping up on mobile?