If I include a JavaScript file in my HTML page header that is not hosted on my server, like shown here:
<html><head>
<script src="https://example.com/script.js"></script></head>
<body>...
Will the browser allow this script to make requests to the original host (example.com) without needing JSONP or CORS due to same-origin-policy restrictions?