With javascript, how I can preload images that dont have a path source but a datauri as its source?
I have something like this:
var image = new Image();
image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==";
I want to do this on https pages but getting an error that i have a mixture of secure and nonsecure items on the page. Any ideas why this may the case and any way I can resolve this issue?