Load 20 werewolf roles
get to the bottome load 20 more.
on click or tap, highlight role
$.ajax({
url: "http://test.bluelinetechnology.com.au/werewolf2",
dataType: "json",
crossDomain: false,
cache: false,
contentType: 'application/json',
data: {
option: "com_werewolf",
task: "session.night",
id: 5
}
})
.then( function ( response ) {
console.log(response);
$.each( response.data, function ( i, val ) {
html += '' + val.name + ' ' + val.speech + '
' + val.information + '';
});
});