Answers for "sweet alert input value"

1

sweet alert 2 do action on confirm

Swal.fire({  
  title: 'Do you want to save the changes?',  
  showDenyButton: true,  showCancelButton: true,  
  confirmButtonText: `Save`,  
  denyButtonText: `Don't save`,
}).then((result) => {  
	/* Read more about isConfirmed, isDenied below */  
    if (result.isConfirmed) {    
    	Swal.fire('Saved!', '', 'success')  
    } else if (result.isDenied) {    
    	Swal.fire('Changes are not saved', '', 'info')  
 	}
});
Posted by: Guest on December-03-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