When I try open the following page as a popup I encounter with the message:
Refused to load the script 'http://allinternetfinance.com/LetMeKnow/jquery-1.11.2.js' because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'
index.html:4 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-anuyZ9J88P7xGyiuMhMfVwpc613qkiD1ZB3UusOLD6A='), or a nonce ('nonce-...') is required to enable inline execution."
the html is:
<html>
<head>
<script src="http://allinternetfinance.com/LetMeKnow/jquery-1.11.2.js";></script>
<script>
$( document ).ready(function() {
window.location.replace("http://localhost:8080/MembershipApp/index.html");
});
</script>
</head>
<body>
</body>
all I get is little white square instead of the page Im trying to redirect it to.
script-src 'self'mean that you are only allowed to execute script from the same src than the current page - Hacketo