This happens in Opera 11, Firefox 3.6.13 and IE 8. For all datepickers creators, I create the previous and next buttons that appear on their own line above the month and year. This happens both in my custom theme, and when using the UI Lightness, which I downloaded, and did not add custom CSS. I am using jQuery UI version 1.8.9 and jQuery 1.4.3. I reproduced it on jsFiddle using UI 1.8.7 and jQuery 1.4.4.
JS script example
My code is:
$(document).ready(function() {
var dates = $('.date').datepicker();
});
Html:
<html>
<head>
</head>
<body class="ui-widget">
<div id='mainApplication' class="ui-widget">
<div id="menuBar" class="ui-widget">
<br />
<span><strong>Start Date:</strong></span><br>
<input type="text" id="start" class="date"><br>
<span><strong>End Date:</strong></span><br>
<input type="text" id="end" class="date"><br>
</div>
</div>
</body>
</html>
source
share