Skip to content Skip to sidebar Skip to footer

Js On Tumblr: "cross-origin Resource Sharing Policy" Error

I got a canvas jQuery pluing script on my tumblr theme, I got this error on Chrome: Cross-origin image load denied by Cross-Origin Resource Sharing policy. Tumblr uploads images t

Solution 1:

what epascarello said, subdomain != same domain

because you are on the same root-domain you could set the document.domain in your theme to static.tumblr.com if you dont need it for anything else (eg. tracking...)

document.domain = 'static.tumblr.com';

do that as early as can.

Post a Comment for "Js On Tumblr: "cross-origin Resource Sharing Policy" Error"