“Warnmeldung” Code-Antworten

Einfaches Alarmprogramm in JavaScript

alert("this is the alert")
Clumsy Capuchin

JavaScript -Alarm

alert("string");
Tex

Warnmeldung

document.querySelector('#from1').onsubmit = function(){

 swal({
    title: "Are you sure?",
    text: "You will not be able to recover this imaginary file!",
    type: "warning",
    showCancelButton: true,
    confirmButtonColor: '#DD6B55',
    confirmButtonText: 'Yes, I am sure!',
    cancelButtonText: "No, cancel it!",
    closeOnConfirm: false,
    closeOnCancel: false
 },
 function(isConfirm){

   if (isConfirm){
     swal("Shortlisted!", "Candidates are successfully shortlisted!", "success");

    } else {
      swal("Cancelled", "Your imaginary file is safe :)", "error");
    }
 });
};
Blue-eyed Boar

Ähnliche Antworten wie “Warnmeldung”

Fragen ähnlich wie “Warnmeldung”

Weitere verwandte Antworten zu “Warnmeldung” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen