if I had several websites and I would want to read "file.html" in every website, how should I do that? The file.html would be just like this:
<h1>Hot news</h1>
<p>article</p>
I know I can use php include or require,
<? include 'file.html'; ?>
or jQuery, but only within a domain.
.load("file.html");
How should I do that cross-domain?
PS: And yes, I know that's insecure