sweetalert2.min.js code example

Example 1: sweetalert2

$ npm install sweetalert2

Example 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");
});

Example 3: sweetalert2

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>

Example 4: sweetalert2

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>

Example 5: sweetalert2

const { value: email } = await Swal.fire({  title: 'Input email address',  input: 'email',  inputLabel: 'Your email address',  inputPlaceholder: 'Enter your email address'})if (email) {  Swal.fire(`Entered email: ${email}`)}

Example 6: jquery sweet popup

$.sweetModal({
	title: 'HTML Content',
	content: 'You can place <b>anything</b> <i>you</i> want in here.'
});