I have several icons on top of each other in a toastr message. This is what it looks like:
My code is very simple, I use toastr after an Ajax call :
success : function(reponse) {
$(event.target).next('i').hide();
if (reponse.retour == 0){
toastr["success"](reponse.texte_retour);
} else {
toastr["error"](reponse.texte_retour);
}
}
I have the same problem whatever the type (error, info, warning, success). What is going wrong?