I want to force external third-party scripts (on separate domains) to use my own implementation of document.write when I upload them to my domain.
t
document.write = function(args) {
}
This works fine for scripts in one domain, but scripts in other domains use the default browser. Can I override this?
source
share