I want the scroll to go to the bottom of the site (or at least 100px) when I click on the calendar, to be able to see the reservation options.
I'm using the following code, but it does not do anything and in the Chrome debugger it does not show me any errors. Any ideas? I'm putting the code in the header.php (Wordpress)
Site: link
$('.ui-state-default').click(function () {
$('html, body').animate({
scrollTop: $(document).height()
}, 'slow');
return false;
});