I have a URL that has some JavaScript file, ImportantScript.js:
www.PrivateDomain.com/ImportantScript.js
I have another URL, www.ImportantBusiness.com, that has some other script file on its page with the following code:
$(document).ready(function ()
{
// Code to read and execute ImportantScript.js
}
What code do I need for the browser viewing www.ImportantBusiness.com to read and execute ImportantScript.js from the URL www.PrivateDomain.com/ImportantScript.js
<script src="...">tag to the HTML isn't possible?