0
$(document).ready(function() {
  $(".confirm").on("click", function(event){
    if(confirm("Sind Sie sicher?")){
       return true;
    } else {
        event.preventDefault();
        return false;
    }
  });
});

I am using this snippet to show an alert to select if you are sure or not, I tested it with firefox and chrome with win 7. But my client is using some kind of iMAC lap top and he tells me that he doesnt see the alert to select OK or CANCEL..

Xhevat Ziberi
  • 19
  • 1
  • 10

0 Answers0