harin
4/6/2013 - 10:15 AM

madness.html

<!DOCTYPE html>
<html>
<head>
  <title></title>
	<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
	<script>
		$(document).ready(function() {
			$.get("http://iceworld.sls-atl.com/api",{cmd:"states"},updateIceworldStates);

			function updateIceworldStates(data){
				console.log(data);
			}
		});
	</script>
</head>
<body>
	<canvas width="400" height="400"></canvas>
	<p id="test">
		there is suppose to be a json here:
	</p>

</body>
</html>