Skip to content

Instantly share code, notes, and snippets.

@rakotomandimby
Created September 28, 2011 07:19
Show Gist options
  • Save rakotomandimby/1247217 to your computer and use it in GitHub Desktop.
Save rakotomandimby/1247217 to your computer and use it in GitHub Desktop.
La partie HTML
<html>
<head>
<title>Factorielle</title>
</head>
<body>
<h1>Factorielle</h1>
<div>Entrer un nombre:</div>
<div>
<form name="factorielle">
<input id="requete" type="text" value="" onkeyup="resultat()">
</form>
</div>
<div style="visibility:hidden" id="affichage">Factorielle (<span id="demande"></span>) => <span id="resultat"> </span></div>
<script src="factorielle.js" type="text/javascript"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment