Answers for "sweetalert2 javascript"

2

swal fire types

swal({
  title: "Are you sure?",
  text: "Your will not be able to recover this imaginary file!",
  type: "danger",
  showCancelButton: true,
  confirmButtonClass: "btn-danger",
  confirmButtonText: "Yes, delete it!",
  closeOnConfirm: false
},
function(){
  swal("Deleted!", "Your imaginary file has been deleted.", "success");
});
Posted by: Guest on November-10-2020
1

sweetalert2

$ npm install sweetalert2
Posted by: Guest on February-07-2021
0

sweetalert2

Swal.fire(
  'Data Add Successfully!',
  'You clicked the button!',
  'success'
)
Posted by: Guest on August-31-2021
1

sweet alert 2

swal("Thank You!", "You clicked the button!", "success");
Posted by: Guest on May-21-2021
0

sweetalert 2 documentation

Swal.fire({
  title: 'Error!',
  text: 'Do you want to continue',
  icon: 'error',
  confirmButtonText: 'Cool'
})
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language