Team:Cooper Union/script/notebookScript

From 2014.igem.org

(Difference between revisions)
 
(2 intermediate revisions not shown)
Line 3: Line 3:
             var dateLinks = new Array();
             var dateLinks = new Array();
             var isFirst = true;
             var isFirst = true;
-
             $('h3').each(function () {
+
             $('.text h3').each(function () {
                 var value = $(this).text();
                 var value = $(this).text();
                 dateLinks.push(value);
                 dateLinks.push(value);

Latest revision as of 12:34, 16 October 2014

   $(document).ready(function () {
       function InitCooperUnionNotebook() {
           var dateLinks = new Array();
           var isFirst = true;
           $('.text h3').each(function () {
               var value = $(this).text();
               dateLinks.push(value);
               $(this).append('<a name="date_' + value.replace('/', ).replace('\\', ) + '"></a>');
               $(this).append(' <a href="#top" class="back-to-top-button">[ top ]</a>');
           });
           var nav = $('.notebook-navigation');
           for (var i = 0; i < dateLinks.length; i++) {
               var day = dateLinks[i].substring(dateLinks[i].indexOf('/') + 1);
               day = day.substring(0, day.indexOf('/'));
               nav.append(' <a href="#date_' + dateLinks[i].replace('/', ).replace('\\', ) + '">' + day + '</a>');
           }
       }
       InitCooperUnionNotebook();
   });