JQuery Datepicker Causes Page Overflow
I am using the datepicker control from jQuery-ui 1.8. from-date is a text input. I am attaching a very simple datepicker: $('#from-date').datepicker(); This causes the page to ove
Solution 1:
I had exactly the same problem. Wrapping Datepicker into a new div with a fixed position after the document is ready worked for me:
$(document).ready(function() {
// ...
$("#ui-datepicker-div").wrap('<div style="position:absolute;top:0px;"></div>');
}
Post a Comment for "JQuery Datepicker Causes Page Overflow"