21 lines
450 B
HTML
21 lines
450 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>JSONEditor | Require.js demo</title>
|
|
<style type="text/css">
|
|
#jsoneditor {
|
|
width: 500px;
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
<script data-main="scripts/main" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.2/require.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<button id="setJSON">Set JSON</button>
|
|
<button id="getJSON">Get JSON</button>
|
|
</p>
|
|
<div id="jsoneditor"></div>
|
|
</body>
|
|
</html>
|