Sweet Alert Ex

by Roman

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/0.4.1/sweet-alert.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/0.4.1/sweet-alert.min.js"></script>

JavaScript

$(function() {
    swal({
        title: "LFZ aus Flotte löschen?",
        text: "Das ausgewählte...",
        showCancelButton: true,
    }, function(clickedOk) {
        if (clickedOk) {
            window.location.href = "https://www.google.com/?q=sweet+alert+is+awesome";
        }
    });
});