Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save allentong/2769752 to your computer and use it in GitHub Desktop.
Save allentong/2769752 to your computer and use it in GitHub Desktop.
Internet Explorer jQuery UI Datepicker access the link on IE via the href tag. This fix removes the href tag attribute on selection. Tested in jQuery UI 1.8.18 and below
$(Selector).datepicker({
onSelect: function () {
$(".ui-datepicker a").removeAttr("href"); // Hack to fix Datepicker in IE
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment