I am working on a small script that performs an Ajax call and returns data as Json.
If the result is not empty, the script displays an alert containing the returned data.
This works fine but I would like to display the data as a list, my question is how could this be done?
The json
["Baskerville Suite","Bolton Suite"]
The jquery/ajax call
hotelid= "EXBHX";
$(document).ready(function() {
$.ajax({
type: "Post",
url: "../ipad_status.php",
data: { HotelID : hotelid },
success: function(data) {
var result = $.parseJSON(data);
console.log(result);
if(result != 0){
$.alert({
title: 'Room displays offline!',
content: 'Room(s): <BR/><BR/>' + result + '',
icon: 'fa fa-rocket',
animation: 'zoom',
boxWidth: '50%',
closeAnimation: 'zoom',
buttons: {
okay: {
text: 'View rooms',
btnClass: 'btn-blue',
action: function() {
window.top.location.href = '../confmon_a.php'
}
},
Close: function() {
text: 'Close'
}
}
});
}
}
});
});
Many thanks in advance for your time.
Assuming https://github.com/craftpip/jquery-confirm is used, then just join the result like
'Room(s):<br/><br/>'+result.join('<br/>'),
or
'Room(s):<br/><br/><ul><li>'+result.join('</li><li>')+'</ul>',
or link them: