The HTML5 specification includes lots of new features, one of which is the canvas
element. HTML5 canvas
gives you an easy and powerful way to draw graphics using JavaScript. For each canvas
element you can use a “context” (think about a page in a drawing pad), into which you can issue JavaScript commands to draw anything you want. Browsers can implement multiple canvas contexts and the different APIs provide the drawing functionality.
Mar 29 2011