Difference between revisions of "Team:H14Z1 Hangzhou/JS-files/menu"

Line 44: Line 44:
 
         '                    </div>\n' +
 
         '                    </div>\n' +
 
         '                    <ul>\n' +
 
         '                    <ul>\n' +
        '                        <li id="menu_Other_work">\n' +
 
        '                            <a href="https://2018.igem.org/Team:H14Z1_Hangzhou/Interlab">\n' +
 
        '                                <span>\n' +
 
        '                                    Interlab\n' +
 
        '                                </span>\n' +
 
        '                            </a>\n' +
 
        '                        </li>\n' +
 
 
         '                        <li id="menu_Other_work">\n' +
 
         '                        <li id="menu_Other_work">\n' +
 
         '                            <a href="https://2018.igem.org/Team:H14Z1_Hangzhou/Contribution">\n' +
 
         '                            <a href="https://2018.igem.org/Team:H14Z1_Hangzhou/Contribution">\n' +

Revision as of 02:41, 17 October 2018

$(function () {

   var menu = $("#menu");
   // Dynamically append the menu to the menu id on document ready
menu.append('
\n' +
       // Menu is ordered right to left
' \n' + '
'
   );
   menu.find("#menu_" + menu.attr("attribute")).addClass("active");  // Adds the active class to the correct element

});