Reputation: 469
If I have a website called http://www.example.com . Can I then load in an external javascript file truw HTTPS link like this: https://platform.twitter.com/widgets.js ?
Is this possible?
Thanks
Upvotes: 0
Views: 626
Reputation: 4793
Do you have acces to the website? then it is fairly easy: 'import' this script on the webpage by setting the src to the url:
<script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script>
Btw this goes in the head of your webpage.
Upvotes: 0