Team:SYSU-Software/prefix.js
From 2014.igem.org
(Difference between revisions)
Line 5: | Line 5: | ||
success: function(html){ | success: function(html){ | ||
$("#navigation").append($(html).find(".sysu-header").html()); | $("#navigation").append($(html).find(".sysu-header").html()); | ||
- | }); | + | } |
+ | }); | ||
} | } |
Latest revision as of 12:18, 26 July 2014
window.onload = function(){ $.ajax({ url: "/Team:SYSU-Software/header", cache: true, success: function(html){ $("#navigation").append($(html).find(".sysu-header").html());
} });
}