first commit

This commit is contained in:
franknstayn
2021-07-03 18:39:08 +08:00
commit 5483c9517d
1555 changed files with 417773 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
$(document).ready(function() {
sportslist();
});
function sportslist(){
$.ajax({ //create an ajax request to load_page.php
type: "GET",
url: "./sportslist",
dataType: "html", //expect html to be returned
success: function(response){
$("#div_sportsList").html(response);
}
});
}