I am using canvg()
function to convert svg
into canvas
.
If we use canvg()
directly on onload it will convert all svg
to canvas
.
I wanted to convert svg
related to particular div
.
Html
<div id="notapply">
<svg><text x="50" y="50">Not to Apply!</text></svg>
</div>
<div id="apply">
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>
</div>
Script
canvg();
Here it should convert svg
related to div
which is having id=apply
.