When I load an image in my canvas and specify its src I use a file name that’s in the same folder as the html file, and that loads the img. So it would be like this:
img.src = 'Untitled.png';
But if I try this, the img doesn’t load
img.src = 'http://dgroover.wikispaces.com/file/view/bill-gates-car.jpg';
Does anyone know whats wrong?
Works with this code:
markup part
script part
DEMO