Skip to content Skip to sidebar Skip to footer

Change The Position Of Jquery Ui Datepicker

I am using the jQuery UI Datepicker. However a vertical CSS scrollbar overflow-y:scroll causes a bug for Firefox, Opera and Safari. This bug can easily be reproduced by copying the

Solution 1:

This is not a clean solution as it looks different in Internet Explorer.

However it works and you might check for the users browser:

$("#ui-datepicker-div").wrap('<div style="position:absolute;left:-2em;top:-1em"></div>');

Post a Comment for "Change The Position Of Jquery Ui Datepicker"