CodeSeven / toastr

Simple javascript toast notifications
http://www.toastrjs.com
MIT License
11.9k stars 2.04k forks source link

Cant call toast in Laravel + Blade + JavaScript #664

Open KatiaSishost opened 3 years ago

KatiaSishost commented 3 years ago

in my blade if i use

`div class="toast" data-title="Hi, there!" data-message="Hope you like paper panel." data-type="success">

` it work properly... show toaster at load... but i need show it toaster when a function are ok

$.ajax({ url: "xxx/store", type: "POST", data: fd, processData: false, contentType: false }).done(function(response){ if(respuesta && response.ok){ calendar.refetchEvents(); alert("OK"); *****here i need the toastr limpiar(); }else { alert("FAIL"); } });