Path : /home/dent/public_html/acad274_demos/ |
Current File : /home/dent/public_html/acad274_demos/goalpage.html |
<div id="results"> DATA to be REPLACED </div> <script src="https://code.jquery.com/jquery.js"></script> <script> let stats = []; $(document).ready(function(){ $.ajax({ url: "http://dent.webdev.iyaserver.com/acad274_demos/ajax_hockeystats.php", type: "GET", datatype: "jsonp" }).done(function(data) { stats = JSON.parse(data); console.log(stats); //$("#results").html(data); }); }) </script>