If it's a CORS problem you can try adding this to your .htaccess file in the root with index.php
Chrome is getting very strict on all this CORS stuff so best to learn it.
Code:
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|svg|svgz|jpg|png|ico|font.css|css|js)$">
## Change this to your website URL not * "https://your_site.com"##
Header set Access-Control-Allow-Origin "*"
Header add Access-Control-Allow-Methods: "GET,POST,OPTIONS,DELETE,PUT"
Header add Access-Control-Allow-Headers: "Upgrade-Insecure-Requests"
</FilesMatch>
</IfModule>
Chrome is getting very strict on all this CORS stuff so best to learn it.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )