add initial findings

This commit is contained in:
garrettmills
2019-11-22 11:57:53 -06:00
commit b550b5d1db
150 changed files with 17496 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<html>
<head>
<script type="text/javascript" src="getvars.js"></script>
</head>
<body>
JSURL Variable Retrieval Test Page.
<br/><br/>
Variables: <br/>
<script type="text/javascript">
for (var ctr = 0; ctr < varnames.length-1; ++ctr) {
document.write("name: " + varnames[ctr] + " & value: " + varvals[ctr] + "<br/>")
}
</script>
</body>
</html>