Skip to content

Instantly share code, notes, and snippets.

@okuniw
Created March 3, 2015 02:26
Show Gist options
  • Save okuniw/f448407623d9cd497afd to your computer and use it in GitHub Desktop.
Save okuniw/f448407623d9cd497afd to your computer and use it in GitHub Desktop.
Modernizr detect date input
$(function () {
if (Modernizr.inputtypes.date == false) {
$("input[type=date]").focus(function () {
WdatePicker();
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment