sweetalert icon indicating copy to clipboard operation
sweetalert copied to clipboard

Loading Alert Dialog

Open javlaks opened this issue 5 years ago • 1 comments

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.

javlaks avatar Oct 23 '19 01:10 javlaks

Try this

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

DavidRayner avatar Nov 13 '19 11:11 DavidRayner