civ/resources/nav.js

29 lines
682 B
JavaScript
Raw Normal View History

2017-07-01 06:58:59 +00:00
$("document").ready(function(){
$("nav")
.append($("<a></a>")
.append("Main")
.attr("href", "./index.html"))
.append($("<a></a>")
.append("Sandbox")
.attr("href", "./sandbox.html"))
.append($("<a></a>")
.append("Map")
.attr("href", "./map.html"))
.append($("<a></a>")
.append("Rules")
.attr("href", "./rules.html"))
.append($("<a></a>")
.append("Questions")
.attr("href", "./questions.html"))
.append($("<a></a>")
.append("Spawn")
.attr("href", "./spawn.html"))
.append($("<a></a>")
.append("TicTac")
.attr("href", "./tictac.html"));
console.log("update");
2017-07-01 06:58:59 +00:00
});