Creating Nice Alerts with sweetAlert

Hi AurelioDeRosa,

Help me make cookies after you click to close for 24 hours.

This works on alert confirm.

if (getCookie("user_canceled") != "YES") {
    if (confirm("Selection")) {
        window.location.href = "http://..."   
    } else {
        setCookie("user_canceled", "YES", 10);
    }
}

function setCookie (name, value, days) {
// code
}

function getCookie(name) {
// code
}

How to do for sweetAlert?