Added qweData

This commit is contained in:
neerholt 2021-03-17 10:14:54 +01:00
parent a84c7a9258
commit 815ec2d499
2 changed files with 16 additions and 0 deletions

View File

@ -632,6 +632,7 @@
<script src="Javascript/Kalender.js"></script>
<script src="Javascript/minibar.min.js"></script>
<script src="Javascript/HeaderFunctionality.js"></script>
<script src="Javascript/qweData.js"></script>
<!-- Body scripts end -->
</body>

View File

@ -0,0 +1,15 @@
$(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)
}
});
}