I need to show both alert message and alertmodal title. Currently, only AlertJS shows. When I try and add a title after the second comma the modal shows the message as the title. How can I have both a message and title? Is this possible?
AlertJS modal title not displaying:
$('#confirmSingles').click(function() {
alertify.confirm('Are you sure you want to confirm all listed singles?', function() {
$.ajax({
url: 'api/singles/confirm'
}).always(function(data) {
handleConfirmResponse(data);
});
});
});
Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW
Comments
Post a Comment