|
$(window).on("load", function(){
|
|
dataFetch();
|
|
});
|
|
|
|
|
|
function dataFetch(){
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "/Game-Jaming/Backend/Controllers/FileHandler/GetGameData.php?gameJamId=1",
|
|
success: function(result){
|
|
console.log(result);
|
|
console.log(result[0].game_link)
|
|
}
|
|
});
|
|
} |