Hash in url bar is page to load for frames When you click a nav link, it sets the hash If you go to nav link in new tab, and click home, it will load the same page, but in the frames
5 lines
125 B
JavaScript
5 lines
125 B
JavaScript
var elems = document.getElementsByTagName("pre");
|
|
for (var i = 0; i < elems.length; i++) {
|
|
hljs.highlightBlock(elems[i]);
|
|
}
|