wai/wai-extra/test/test.html
Michael Snoyman 6ab2dfe739 Add 'wai-extra/' from commit '29076d018b0cc159c3ccf3050350e4b7469f2c6c'
git-subtree-dir: wai-extra
git-subtree-mainline: ebedc4d083
git-subtree-split: 29076d018b
2011-07-22 16:51:23 +03:00

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>