Skip to content

Instantly share code, notes, and snippets.

@bosz
Created July 20, 2020 15:05
Show Gist options
  • Save bosz/b7f66f2c53fb16973d5f613526fe4629 to your computer and use it in GitHub Desktop.
Save bosz/b7f66f2c53fb16973d5f613526fe4629 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link id="bsdp-css" href="https://unpkg.com/[email protected]/dist/css/bootstrap-datepicker3.min.css" rel="stylesheet">
<title>JS Bin</title>
</head>
<body>
<div class="col-4">
<label for="">Select date</label>
<input type="date" class="form-control datepicker">
</div>
<script>
$('.datepicker').datepicker({});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment