ONLINE WHITEBOARD FREE
Click to see live demo Source Code: <!DOCTYPE html> <head> <meta charset="utf-8" /> <style> * { margin: 0; padding: 0; } body, html { height: 100%; } #myCanvas { cursor: crosshair; position: fixed; } </style> <title>HTML5 Canvas Drawing Board</title> <script type="text/JavaScript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2"></script> </head> <body> <br><br> <h2>by Prakhar Doneria</h2> <canvas id="myCanvas"> Sorry, your browser does not support HTML5 canvas technology. </canvas> <script> window.onload = function() { var myCanvas = document.getElementById("myCanvas"); var ctx = myCanvas.getContext("2d"); // Fill Window Width and Height myCanvas.width = window.innerWidth; myCanvas.height = wi...