]> jfr.im git - z_archive/KronOS.git/blob - video/public/js/application.js
8a263c6f01002a900aa0e0510b55986b9c134736
[z_archive/KronOS.git] / video / public / js / application.js
1 $(document).ready(function () {
2 $.getJSON("/backend/get_menu", function(data) {
3 var menuitems = []
4 $.each(data, function(key, val) {
5 menuitems.push('<li><a href="' + val + '">' + key + '</li>');
6 });
7 $('<ul/>', {
8 'class': 'nav',
9 html: menuitems.join('')
10 }).appendTo('.menudiv');
11 });
12 });