old-sites/c2015/lib/jsurl/index.html

15 lines
451 B
HTML
Raw Normal View History

2019-11-22 17:57:53 +00:00
<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>