You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i want to use make a image and append in my dom, but not work in IE8. what's the problem?
...
var image = canvas.toDataURL("image/png");
var img = document.createElement("img");
img.src = image;
img.width = canvas.width;
img.height = canvas.height;
$("#id").append(img);
...