"Calendar&Panel&PopOver"
Bootstrap 3.3.0 Snippet by abr4xas

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="panel panel-primary"> <div class="panel-heading text-center"><h3>Febrero</h3></div> <div class="panel-body"> <div class="table-responsive"> <table class="table-condensed table-striped calendar"> <thead> <tr> <th>Domingo</th> <th>Lunes</th> <th>Martes</th> <th>Miercoles</th> <th>Jueves</th> <th>Viernes</th> <th>Sabado</th> </tr> </thead> <tbody> <tr> <td class="muted">29</td> <td class="muted">30</td> <td class="muted">31</td> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>5</td> <td>6</td> <td>7</td> <td>8</td> <td>9</td> <td>10</td> <td>11</td> </tr> <tr> <td>12</td> <td>13</td> <td>14</td> <td>15</td> <td>16</td> <td>17</td> <td>18</td> </tr> <tr> <td>19</td> <td class="btn-warning" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus."><strong><a href="http://google.com" target="_blank">20</a></strong></td> <td>21</td> <td>22</td> <td>23</td> <td>24</td> <td>25</td> </tr> <tr> <td>26</td> <td>27</td> <td>28</td> <td class="muted">1</td> <td class="muted">2</td> <td class="muted">3</td> <td class="muted">4</td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div>
body { padding-top: 90px; } .calendar { width: 100%; margin: 0 auto; }
$(function () { $('[data-toggle="popover"]').popover() })

Related: See More


Questions / Comments: