Encountering a problem while loading a js
file:
https://code.jquery.com/jquery-1.11.1.min.js
, which is being loaded on my webpage in this manner:
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
Upon loading my webpage, an error appears in the Firefox console:
Mixed active content « http://ipinfo.io/?callback=jQuery1111014566829645093016_1495038438100&_=1495038438101 » jquery-1.11.1.min.js:4:26952
Various solutions were attempted to address this issue,
Initially tried replacing https://
with //
in the src
attribute of the script
tag, however, no success was achieved.
The suspicion arose that the problem may be due to indirectly attempting to load http://ipinfo.io
etc. from an https
page, leading to all instances of http
being changed to https
within jquery-1.11.1.min.js
, but the error persisted.
In the error message, there is a reference to an offset "4:26952" for the jquery-1.11.1.min.js
file, yet it's unclear how to locate and interpret this (is it referring to line 4, column 26952?).
Your assistance is greatly appreciated.