view bootstrap-year-calendar/index.html @ 107:24a967efbf3e

add dmd
author paulo
date Fri, 03 Apr 2020 23:58:24 -0700
parents
children
line source
1 <html>
2 <head>
3 <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
4 <link rel="stylesheet" type="text/css" href="bootstrap-year-calendar.min.css">
5 </head>
6 <body>
7 <script src="jquery-1.10.min.js"></script>
8 <script src="bootstrap.min.js"></script>
9 <script src="bootstrap-year-calendar.min.js"></script>
11 <div id="calendar"></div>
12 </body>
14 <script>
15 $("#calendar").calendar({
16 customDayRenderer: function(cellContent, currentDate) {
17 var todayDateString = (new Date()).toDateString();
18 if (currentDate.toDateString() == todayDateString) {
19 cellContent.css('background', '#EEE');
20 }
21 }
22 });
23 </script>
25 </html>