Auto submit isn't working

I have a few questions that need to be auto submitted, but the auto submit I've been using seems to not work anymore.

The error I'm getting is

 ciwweb.pl?hid_s=Av8AALWfuzEmH-jaOjRNT518SYAqAAAAhbOICBMs0e0LBntjqEtlsYOsiwcfLdztAhh5Y61QPuXT-d1XQHnY6QIGfXavTWWw:125 Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "default-src 'self' 'unsafe-inline' data:". Note that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.


I've tried two different auto-submit scripts.

The one I've used with success in the past is
<script>
$(document).ready(function() {
setTimeout('SSI_SubmitMe()',1);
});
</script>


and I've also tried this code that I found in the answer to https://legacy.sawtoothsoftware.com/forum/22547/auto-submit-a-page?show=22547#q22547
<body onload="doonload()"> <script language="javascript"> function doonload() { setTimeout('SSI_SubmitMe()',0);  } </script> 


and both are giving me the same error.

Resolved
11 replies