I'm a newbie.
While im working on datepicker, somehow it is not working properly on IE.
Please check the below image
and here is the code:
function pageLoad() {
$(function () {
$("#textBox").datepicker({
showOn: "button",
buttonImage: "someImageUrl",
buttonImageOnly: true,
dateFormat: "M dd,yy",
buttonText: "Select date"
})
});
$("#textBox").val(defaultDate);
}
here are the versions of JQuery
<script src="//code.jquery.com/jquery-1.10.2.js" type="text/javascript"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js" type="text/javascript"></script>
Sorry here are the CSS:
<link id="lnkStyleSheet" runat="server" rel="stylesheet" href="../CSS/StyleSheet.css" type="text/css" />