-
Notifications
You must be signed in to change notification settings - Fork 2
/
datepicker.html
68 lines (53 loc) · 1.98 KB
/
datepicker.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<title>AppCenter - Xamarin Webview Samples</title>
<link rel="stylesheet" href="jQueryUI/jquery-ui-1.12.0.custom/jquery-ui.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="jQueryUI/jquery-ui-1.12.0.custom/jquery-ui.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-81122166-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var jQueryLoaded = false;
function checkForJQuery() {
//if the jQuery object isn't available
if (typeof(jQuery) == 'undefined') {
document.write("<h1>Could not load jQuery on this device (</h1>");
jQueryLoaded = false;
} else {
jQueryLoaded = true;
}
}
window.onload = function () {
checkForJQuery();
if (!jQueryLoaded)
return;
$("#datepickerPop").datepicker();
$("#datepickerInline").datepicker();
}
</script>
<body>
<!-- Date Picker ============================================================================================================================================= -->
<div class='section ui-widget ui-corner-all'>
<p class="ui-state-default ui-corner-all ui-helper-clearfix" style="padding:4px;">
<span class="ui-icon ui-icon-calendar" style="float:left; margin:-2px 5px 0 0;"></span>
Date Picker
</p>
<div class='ui-widget-content ui-widget ui-corner-all '>
<p>Select a Date (Pop-up): <input type="text" id="datepickerPop"></p>
<br>
<p>Inline Date Picker: </p>
<div id="datepickerInline"></div>
<br>
</div>
</div>
<br/>
<br/>
</body>
</html>