O'Reilly 1.1: Hello Dot

The "Hello World" of RaphaelJS

by Stéphane Cabaret

HTML

<html>
    <head>
        <title>Red dot</title>        
    </head>
    <body>
        <div id="container"></div>
        <script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
        <script>
var paper = Raphael("container", 500, 300);
var dot = paper.circle(250, 150, 100).attr("fill", "#006600").attr("stroke", "#0000FF").attr("stroke-width", 3);
        </script>
    </body>
</html>