File "page.html"

Full Path: /home/analogde/www/neurone/test/page.html
File size: 340 bytes
MIME-type: text/html
Charset: utf-8

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>

<script>

    function traiter()
    {
        var i = 5;
        i = i + 8;
        alert("Message");
    }

</script>

<input name="button" type="button" onClick="traiter()" value = "Bouton" >

</body>
</html>