jCanvas

<script>
$(document).ready(function(){      
  $("canvas").drawArc({
  strokeStyle: "#000",
  strokeWidth: 5,
  x: 100, y: 100,
  radius: 50,
  start: 45, end: 135
  });      
 });
</script>

It works only on

<div id='canvases'>
    <canvas width='400' height='450'>Please enable JavaScript to use the sandbox</canvas>
</div>

This is not working on

`<div id="canvas"></div>`

How to make it work?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.