Answers for "sweet alert message using jquery"

3

examples of sweet alert in jquery

swal('great job','successfully created','success',{
        button:'Done' //default ok button
    });
Posted by: Guest on March-03-2022
0

sweet alert example

swal({
  title: "Good job!",
  text: "You clicked the button!",
  icon: "success",
  button: "Aww yiss!",
});
Posted by: Guest on November-09-2021
1

sweetalert js full code

<script>
  // when window loades this alert pop ups 
        swal({
      text: "Hello world!",
           }     );
    </script>
Posted by: Guest on July-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language