javascript animated alert message box code example
Example 1: how to make an alert in html
<script>
alert('this is an alert');
</script>
Example 2: javascript animated alert message box
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<button class="btn btn-outline-danger" onclick="delete1()">Delete</button>
<script>
function delete1(){
swal({
title: "Good job!",
text: "You clicked the button!",
icon: "error",
button: "Aww NOoo!",
});
}
</script>
Example 3: javascript animated alert message box
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script>
swal({
title: "Good job!",
text: "You clicked the button!",
icon: "success",
button: "Aww yiss!",
});
</script>