Zum Inhalt springen


PHPWelt.net Blog - Ein weiteres tolles WordPress-Blog


6. April 2008

JavaScript Msgbox

function Pruefdies(){
     Check = confirm("Wollen Sie das wirklich?");
    if(Check == false){
        return false;
    }else{
        return true;
    }
}

So einfach gehts :D