t4t5 / sweetalert

A beautiful replacement for JavaScript's "alert"
https://sweetalert.js.org
MIT License
22.4k stars 2.84k forks source link

Loading Alert Dialog #917

Open javlaks opened 4 years ago

javlaks commented 4 years ago

It would be great if SweetAalert implements a Loading Alert. Just to show an alert dialog with no buttons and a "loading" image while we perform some background tasks.

I have tried to do it using ajax, but it doesn't work.

This will be an excellent option for this amazing tool.

DavidRayner commented 4 years ago

Try this

  swal({
    title: "Loading...",
    text: "Please wait",
    icon: "/images/loading.gif",
    button: false,
    closeOnClickOutside: false,
    closeOnEsc: false
  });