mirror of
https://github.com/typeable/wai.git
synced 2024-12-29 09:04:33 +03:00
6ab2dfe739
git-subtree-dir: wai-extra git-subtree-mainline:ebedc4d083
git-subtree-split:29076d018b
18 lines
385 B
HTML
18 lines
385 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
|
|
<script>
|
|
$(function(){
|
|
$.getJSON("/json?callback=?", function(o){
|
|
$("#dest").html(o.data);
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
There should be some content loaded below:
|
|
<div id="dest"></div>
|
|
</body>
|
|
</html>
|