I want to load JS code from external site when user click on button. For example:
<button onclick="LoadJSFromURL('facebook.com/blablabla')" />
and when user press button we attach new script to the document:
<script> Share.WorkUrl="http://MySite.com"; Share.UserId=5 </script> <script src="http://Facebookcom/blabalbal" ></script>
and then we must execute this script. Is it real?