johnpaulada
8/2/2016 - 9:18 AM

A Sweet Alert box that asks for input.

A Sweet Alert box that asks for input.

swal({
    title: "An input!",   text: "Write something interesting:",
    type: "input",
    showCancelButton: true,
    closeOnConfirm: false,
    animation: "slide-from-top",
    inputPlaceholder: "Write something" },
    function(inputValue) {
        if (inputValue === false) return false;
        if (inputValue === "") {
            swal.showInputError("You need to write something!");
            return false
        }
        swal("Nice!", "You wrote: " + inputValue, "success");
    });