<!DOCTYPE html> <head> <title>Raphael Dev testing html</title> <!-- HTML to try new developments in Raphael --> <!-- Global use --> <!-- To work with full version --> <!--<script type="text/javascript" src="../raphael.js"></script>--> <!-- To work with minified version --> <!--<script type="text/javascript" src="../raphael-min.js"></script>--> <!-- To work with dev versions --> <!-- Comment this 4 script tags if you are testing with AMD --> <!--<script type="text/javascript" src="../node_modules/eve/eve.js"></script>--> <!--<script type="text/javascript" src="raphael.core.js"></script>--> <!--<script type="text/javascript" src="raphael.svg.js"></script>--> <!--<script type="text/javascript" src="raphael.vml.js"></script>--> <!--<script type="text/javascript" src="raphael.amd.js"></script>--> <!-- Comment this script tag if you are testing with AMD --> <!--<script type="text/javascript"> // Initialize container when document is loaded window.onload = function () { paper = Raphael(0, 0, 640, 720, "container"); paper.circle(100, 100, 100); //example }; //Work here, in a separate script file or via command line </script>--> <!-- AMD use --> <script data-main="amdDev" src="require.js"></script> <!-- Use amdDev.js to work with AMD and Raphael --> </head> <body> <!-- Container for svg/vml root element --> <div id="container"></div> </body> </html>