civ/resources/nav.js
2017-06-29 20:47:03 -04:00

24 lines
562 B
JavaScript

window.onload = 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"));
}