realrashid sweetalert in ajax

Solutions on MaxInterview for realrashid sweetalert in ajax by the best coders in the world

showing results for - "realrashid sweetalert in ajax"
Neila
15 Sep 2019
1$(document).ready(function() {
2
3        //SweetAlert2 Toast
4        const Toast = Swal.mixin({
5            toast: true,
6            position: 'top-end',
7            showConfirmButton: false,
8            timer: 1000
9        });
10
11 });
12
13Toast.fire({
14           type: 'success',
15           title: 'Data updated.'
16});
Lya
17 Jan 2017
1$(document).ready(function() {
2
3        //SweetAlert2 Toast
4        const Toast = Swal.mixin({
5            toast: true,
6            position: 'top-end',
7            showConfirmButton: false,
8            timer: 1000
9        });
10
11 });
12
13Toast.fire({
14           type: 'success',
15           title: 'Data updated.'
16});
17
18
Leigh
10 Jan 2019
1composer require realrashid/sweet-alert
2