forked from quickredfox/jquery-jsonview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
30 lines (26 loc) · 860 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>example</title>
<link rel="stylesheet" href="css/jquery.jsonview.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.jsonview.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
// wait for document ready
$(function(){
// load some json data
$.getJSON('data.json',function(json){
// inject contents in document body
$('#jsonview').jsonView(json);
})
});
</script>
</head>
<body>
<div id="jsonview">
</div>
</body>
</html>