var json, cat, theme, i = 0; function apiReq() { $.ajax({ async: false, url: "./api/", dataType: 'json', success: function(data) { json = data; } }); } function loadCat(id) { if(i === 0) cat = json.cat1; if(i === 1) cat = json.cat2; $("#game").html("

Catégorie : "+category.nom_cat+"

"); loadTheme(1); } function loadTheme(id) { theme = category.theme[id]; $("#game").append(""); $("#game").append("

") quest(); } function quest() { while(i < theme.questions.length) { $("#question").html(theme.questions[i]); $("#answers").click(function() { }); } } function play() { $("#play").remove(); apiReq(); }