Files
2018-11-08 08:43:05 -05:00

19 lines
716 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Ajax</title>
<meta charset="UTF-8">
<meta http-equiv="cache-control" content="must-revalidate, no-store, no-cache">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h4>Test different document types</h4>
<button onclick="captureJSON()">Click here to capture JSON Data</button>
<button onclick="captureXML()">Click here to capture XML Data</button>
<button>Click here to capture HTML Data</button> <!-- onclick="captureHTML()" -->
<div id="capturedJSON"></div><div id="capturedXML"></div><div id="HTML"></div>
<script src="js/jsonCap.js"></script>
<script src="js/xmlCap.js"></script>
</body>
</html>