Skip to content

Instantly share code, notes, and snippets.

@megub
Last active August 29, 2015 14:24
Show Gist options
  • Save megub/30e614a7305ebb93b3a6 to your computer and use it in GitHub Desktop.
Save megub/30e614a7305ebb93b3a6 to your computer and use it in GitHub Desktop.
Add Month and Year to Date Picker
<script>
$(function() {
$( "#birthday" ).datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-100:+0"
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment