Weird behaviour with jQuery datepicker in IE10
I have added a jQuery datepicker to my MVC application and it seems to be
working perfectly in all browsers except for Internet Explorer.
On click of the cell the calendar control appears but clicking through the
months using the navigation icons seems to stop after varying amount of
clicks. The date cells then become unclickable and I am unable to set the
date.
Has anyone ever seen this issue before? And if so was there a solution
available?
My javascript code is as follows:
$(document).ready(function () {
$('#expirydate').datepicker({ dateFormat: 'dd/mm/yy', changeMonth:
true, changeYear: true });
});
And my HTML is as follows:
<label for="expirydate">Expiry Date:</label>
<input type="text" id="expirydate" class="datepicker" name="expirydate"
/><br />
No comments:
Post a Comment