Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/js/knavbar.js
blob: c7fd93bd0019e8edc41ea79134fa7e9de7437aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//This code loads in html for knavbar into a <section>
//tag with the id="navigation"
$(document).ready(function(){    
    
    //updates the links in knavbar
    //specific to the context
    var modify = function(){
	document.write('foo');
	$('#knavbarHome').attr('href', 'foo');
	
    };

    var foo = $('#navigation').load('chakra/kfoo.html #knavbar', modify);
    var x = 0;
});