$("document").ready(function(){ $("nav") .append($("") .append("Main") .attr("href", "./index.html")) .append($("") .append("Sandbox") .attr("href", "./sandbox.html")) .append($("") .append("Map") .attr("href", "./map.html")) .append($("") .append("Rules") .attr("href", "./rules.html")) .append($("") .append("Questions") .attr("href", "./questions.html")) .append($("") .append("Spawn") .attr("href", "./spawn.html")) .append($("") .append("TicTac") .attr("href", "./tictac.html")); console.log("update"); });