Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.11 KB | None | 0 0
  1. <div class="col-md-3 text-center" id="footeranchor">
  2.                 <a tabindex="0" role="button" data-trigger="focus" class="btn btn-primary primary" data-placement="top" id="popoverExampleTwo">Contact</a>
  3.                 <div id="popoverExampleTwoHiddenContent" style="display: none">
  4.                     <table class="table table-hover">
  5.                         <thead class="thead-dark">
  6.                             <tr>
  7.                                 <th scope="col">#</th>
  8.                                 <th scope="col">Nom</th>
  9.                                 <th scope="col">Prenom</th>
  10.                                 <th scope="col">Email</th>
  11.                             </tr>
  12.                         </thead>
  13.                         <tbody>
  14.                             <tr class="table-light">
  15.                                 <th scope="row"></th>
  16.                                 <td>BIALOTA</td>
  17.                                 <td>Quentin</td>
  18.                                 <td><a href="mailto:quentin.bialota@etu.univ-amu.fr" class="mail">quentin.bialota@etu.univ-amu.fr</a></td>
  19.                             </tr>
  20.                             <tr class="table-light">
  21.                                 <th scope="row"></th>
  22.                                 <td>QUEZEL-PERRON</td>
  23.                                 <td>Theo</td>
  24.                                 <td><a href="mailto:theo.quezel-perron@etu.univ-amu.fr" class="mail">theo.quezel-perron@etu.univ-amu.fr</a></td>
  25.                             </tr>
  26.                             <tr class="table-light">
  27.                                 <th scope="row"></th>
  28.                                 <td>CHEVALIER</td>
  29.                                 <td>Melvin</td>
  30.                                 <td><a href="mailto:melvin.chevalier@etu.univ-amu.fr" class="mail">melvin.chevalier@etu.univ-amu.fr</a></td>
  31.                             </tr>
  32.                         </tbody>
  33.                     </table>
  34.                 </div>
  35.                 <div id="popoverExampleTwoHiddenTitle" style="display: none">
  36.                     Contact:
  37.                 </div>
  38.             </div>
  39.             <div class="col-md-3 text-center" id="footeranchor">
  40.                 <a href="./pages/sources.html" class="btn btn-primary primary" id="btncolor">Sources</a>
  41.             </div>
  42.         </div>
  43.         </div>
  44.         <div class="footer-copyright text-center py-3">
  45.             © 2018 Copyright: BIALOTA CHEVALIER QUEZEL-PERRON
  46.         </div>
  47.         <!-- Copyright -->
  48.     </footer>
  49.     <script type="text/javascript">
  50.         $(function() {
  51.  
  52.             // Enabling Popover Example 2 - JS (hidden content and title capturing)
  53.             $("#popoverExampleTwo").popover({
  54.                 html: true,
  55.                 content: function() {
  56.                     return $('#popoverExampleTwoHiddenContent').html();
  57.                 },
  58.                 title: function() {
  59.                     return $('#popoverExampleTwoHiddenTitle').html();
  60.                 }
  61.             });
  62.  
  63.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement