Canvas Drawing BY mouse Help?

My canvas drawing app using Mouse is working on localhost . but whenever i am posting it to Wordpress website on server its not working . Here is the link for The app http://99mobileworld.com/canvas-drawing-application/

Hi,

You have two stray <p> tags on line 159 and 160 of your page.


ctx.lineCap = ‘round’;
ctx.strokeStyle = ‘black’;</p>
<p>canvas.addEventListener(‘mousedown’, function(e) {
ctx.beginPath();

Remove those and see what happens.