Skip to content

Instantly share code, notes, and snippets.

@catoidrobo
Created February 5, 2016 10:25
Show Gist options
  • Save catoidrobo/d46b650736ef995e6e4a to your computer and use it in GitHub Desktop.
Save catoidrobo/d46b650736ef995e6e4a to your computer and use it in GitHub Desktop.
入力フォームをクリックするとカレンダーが出てくるすごいやつ
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1/themes/redmond/jquery-ui.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js" type="text/javascript"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1/i18n/jquery.ui.datepicker-ja.min.js"></script>
<script>
$(function() {
$("#datepicker").datepicker({
changeMonth: true,
changeYear: true
});
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment