Reputation: 1752
I was trying to capture a screenshot of a div containing svg elemens along with other elements using html2canvas. I found 2 versions of html2canvas
Whats the difference between them, and does any of hem support svg elements and cross browser functionality (prefereably IE, Chrome and Firefox)
Upvotes: 2
Views: 1054
Reputation: 11
buddy, u should import
<script src="html2canvas.js"></script>
,but not necessary
<script src="html2canvas.svg.js"></script>
version1 is rely on the vesion 2
Upvotes: 1