Skip to content

Instantly share code, notes, and snippets.

@phenix-factory
Last active August 29, 2015 14:05
Show Gist options
  • Save phenix-factory/eb58f510f70bd6195e5a to your computer and use it in GitHub Desktop.
Save phenix-factory/eb58f510f70bd6195e5a to your computer and use it in GitHub Desktop.
Desactiver les champs dates sur les navigateurs qui ont un datepicker natif
$(function () {
if (Modernizr.inputtypes.date) {
$(".formulaire_spip input[type='date']").prop("type", "text");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment