HTML
xxxxxxxxxx
1
**below is the code for the modal that works:**
2
3
<div class="md-form md-outline input-with-post-icon datepicker" id="customDays">
4
<input placeholder="Select date" type="text" id="Customization" class="form-control green-text">
5
<label class="green-text" for="Customization">When...</label>
6
<i class="fas green-text fa-calendar input-prefix" tabindex=0></i>
7
</div>
8
9
10
**Below is the code for the blue calendar that isn't in line with the input but does fire a:**
11
12
<div class="col-4">
13
<div id="date-picker-example" class="md-form md-outline input-with-post-icon datepicker">
14
<input placeholder="Select date" type="text" id="example" class="form-control">
15
<label for="example">Try me...</label>
16
<i class="fas fa-calendar input-prefix" tabindex=0></i>
17
</div></div>
18
19
20
**Below is the code for the green calendar that is inline but wont fire a calender modal :**
21
22
<div class="md-form md-outline input-with-post-icon datepicker" id="customDays">
23
<input placeholder="Select date" type="text" id="Customization" class="form-control green-text">
24
<label class="green-text" for="Customization">When...</label>
25
<i class="fas green-text fa-calendar input-prefix" tabindex=0></i>
26
</div>
27
CSS
1
1
JS
xxxxxxxxxx
1
<script>
2
3
$('.datepicker').datepicker();
4
5
</script>
Console errors: 0