$.getJSON("/games.json", function (data) {
for (let i = 0; i < data.length; i++) {
$('#games').append(
$('
').prop({
id: 'game',
style: 'cursor: pointer;',
dir: data[i].directory
}).append(
$('
![]()
').prop({
src: data[i].directory + "/" + data[i].image
})
).append(
$('
').text(data[i].name)
)
);
}
});
$(document).ready(function() {
$(document).on("click", "#game", function(event) {
redirectGame($(this).attr("dir"));
});
});
function redirectGame(dir) {
window.location.href = window.location.origin + "/" + dir + "/index.html";
}