télécharger ou tester sur place (bouton précédent
du navigateur pour revenir)
<html>
<head>
<link rel='stylesheet' type='text/css'
href='http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css' />
<script type='text/javascript'
src='http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js'></script>
</head>
<body>
<!-- C’est dans cette div que votre script JSXGraph va s’exprimer. -->
<div id='box' class='jxgbox' style='width:400px; height:400px;'></div>
<script type='text/javascript'>
var brd = JXG.JSXGraph.initBoard('box',
{boundingbox:[-1, 1, 1, -1], axis:true});
/* Coder ici gaiement, mais avec ardeur. */
</script>
</body>
</html>