Answers for "javascript animated alert message box"

11

how to make an alert in html

<script>
  alert('this is an alert');
</script>
Posted by: Guest on May-06-2020
0

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>
Posted by: Guest on May-21-2021
0

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>
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language