PHP/HTML/JS

  • Hallo Community,
    habe folgendes Problem und zwar wird die Includierte funktion (JS) nicht in der spiel.php ausgeführt...


    Java
    function showdiv(id) { document.getElementById(id).display='block'; }
    function hidediv(id) { document.getElementById(id).display='none'; }
    function game_init() {
    showdiv('cont_warten');
    hidediv('main_game');
    setTimeout("showdiv('main_game'); hidediv('cont_warten'); ",4000);
    }