You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
415 B
HTML
27 lines
415 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<script type="text/javascript" src="jquery-1.10.2.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var myjson;
|
|
|
|
function readJSON(){
|
|
$.getJSON( "md_allworks.json", function(data){
|
|
myjson=data;
|
|
console.log(data);
|
|
})
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="javascript:readJSON();" >
|
|
Testing JSON é
|
|
</body>
|
|
</html>
|