I am getting Jquery is not defined
in FireFox browser but works in opera, here is ex http://eef.percipio.me/index/charts.
I load jquery with
if (!window.jQuery) {
var jq = document.createElement('script'); jq.type = 'text/javascript';
// Path to jquery.js file, eg. Google hosted version
jq.src = 'http://eef.percipio.me/themes/third_party/charts/js/jquery-1.10.2.min.js';
document.getElementsByTagName('head')[0].appendChild(jq);
}
and seems problem with this code, since it works if I do
<script src="http://eef.percipio.me/themes/third_party/charts/js/jquery-1.10.2.min.js" type="text/javascript">