I'm currently working with the ionic framework to develop a mobile application. I'd like to incorporate Sweet Alert for displaying success messages. You can find Sweet Alert at .
My goal is to include a timer in the success message.
swal("Good job!", "You clicked the button!", "success")
Although there is a timer function available, it doesn't feature the animated check mark associated with a success message.
swal({ title: "Auto close alert!", text: "I will close in 2 seconds.", timer: 2000, showConfirmButton: false });
Is there a way to combine both functionalities seamlessly?