Answers for "sweet alert warning"

5

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

switch alert

swal({
	title: "Good job!",
	text: "You clicked the button!",
	icon: "success",
	button: "Aww yiss!"
});
Posted by: Guest on May-20-2020
0

sweet alert bootstrap

swal("Thank you!", "We will get back to you if required", "success");
Posted by: Guest on December-02-2020
0

change icon in sweet alert

swal({  icon: "error",});
Posted by: Guest on June-02-2020
0

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

sweet alert bootstrap

Swal.fire(  'Good job!',  'You clicked the button!',  'success')
Posted by: Guest on November-02-2020

Browse Popular Code Answers by Language