git-subtree-dir: yesod-examples git-subtree-mainline:2dc10de435git-subtree-split:851f928e55
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
$(function(){
|
|
$("#navbar a").click(function(){
|
|
$.getJSON($(this).attr("href"), {}, function(o){
|
|
$("h1").html(o.name);
|
|
$("article").html(o.content);
|
|
});
|
|
return false;
|
|
});
|
|
});
|