I'd like to use HTML2Canvas to take a screenshot (base64 representation) of a jQuery selectable list. However, it seems to be unable to interpret the jQuery element.
This is how I'm taking the screenshot.
html2canvas(document.getElementById("target"), {
onrendered: function (canvas) {
var dataURL = canvas.toDataURL();
console.log(dataURL);
}
});
It works for taking a screenshot of a regular HTML element so I'm not sure what to do now.