Answers for "sweetalert warning"

13

Sweetalert

<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script>swal("My title", "My description", "success");</script>
Posted by: Guest on May-22-2021
0

sweetalert

Swal.fire({
  position: 'top-end',
  icon: 'success',
  title: 'Your work has been saved',
  showConfirmButton: false,
  timer: 1500
})
Posted by: Guest on February-19-2022
2

sweet alert bootstrap

Swal.fire({  icon: 'success',  title: 'Oops...',  text: 'Something went wrong!',  footer: '<a href>Why do I have this issue?</a>'})
Posted by: Guest on November-02-2020
0

sweetalert

swal("Good job!", "You clicked the button!", "error");
Posted by: Guest on December-11-2020
0

sweetalert

swal({  icon: "success",});
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language