Answers for "Swal confirmation"

1

swal change confirm button class

Swal.fire({
    title: 'example text',
    buttonsStyling: false,
    customClass: {
    	confirmButton: 'example-class' //insert class here
    }
})
Posted by: Guest on November-24-2020
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
0

sweet alert bootstrap

Swal.fire(  'Good job!',  'You clicked the button!',  'success')
Posted by: Guest on November-02-2020

Browse Popular Code Answers by Language