On the page is connected jQuery UI Datepicker:
<script> $(document).ready(function(){ $("#date").datepicker(); }); </script> <input id="#date">
$(document).ready(function(){
- means that the script is waiting for the page to load, well, if I have a very large page and it can load for example 5 seconds. I want to use the calendar right away without waiting for the full page load, then how change script?