I am creating canvas dynamically with input, for this example I put 2 canvas with the same id. What I am trying to do is that when I draw the canvas with the button, the drawing will be generated. in the same way if by pressing the second button that enters and generates the same drawing.
Code:
$(document).ready(function (){
var a_canvas = document.getElementById("a");
var context = a_canvas.getContext("2d");
$('#draw').click(function() {
// Draw the face
context.fillStyle = "yellow";
context.beginPath();
context.arc(95, 85, 40, 0, 2*Math.PI);
context.closePath();
context.fill();
context.lineWidth = 2;
context.stroke();
context.fillStyle = "black";
// Draw the left eye
context.beginPath();
context.arc(75, 75, 5, 0, 2*Math.PI);
context.closePath();
context.fill();
// Draw the right eye
context.beginPath();
context.arc(114, 75, 5, 0, 2*Math.PI);
context.closePath();
context.fill();
// Draw the mouth
context.beginPath();
context.arc(95, 90, 26, Math.PI, 2*Math.PI, true);
context.closePath();
context.fill();
// Write "Hello, World!"
context.font = "30px Garamond";
context.fillText("Hello, World!",15,175);
});
});
canvas {
border: 1px dotted black;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<canvas class="u" id="a" width="200" height="200"></canvas>
<div>
<button id="draw">Draw</button>
</div>
<canvas id="a" width="200" height="200"></canvas>
<div>
<button id="draw">Draw</button>
</div>
one of the way I'm trying to do is that in var a_canvas = document.getElementById("a");
or for the class