I have a script that I have no control over and is on another domain. The default procedure is to just include it in a script tag and it runs fine.
I don't want to run it by default so I have an if statement and if true I want to run the script. So default option is:
<script src="http://domain/site/script?Id=12345&delayMs=2000&stayMs=10000&chance=0.1" type="text/javascript" ></script>
I taught I could just use jQuery.getScript() to get it to run the above url but this does not work. I do not know the correct link to the actual script and functions contained so I cannot getScript and call functions.
Any ideas would help.
Regards Brian