dealing with https and http and wanting to avoid code clutter by doing https/http evaluation I decided to add the jquery framework to my local installation (template system)
Version of Expression Engine: 1.7.0
Integrating the minified version of the latest jquery 1.6.2:
<script type="text/javascript" src="{path="scripts/google_jquery_1_6_2_min"}"></script>using firebug shows that the local jquery is loading alright.
if I check for jquery being installed : $() I get a NULL object ...
additionally firebug gives me an error in the console:
Syntax Error:
[Break On This Error] les”]=u;o=l=g=h=m=j=a=i=null;return k}...asData:function(a){a=a.nodeType?f.cach (google_jquery_1_6_2_min on line 16)
It didn't matter if I use a simple copy/paste of the jquery code to the template or actually using the original downloaded jquery file from the cdn.
The fun thing is the local UNCOMPRESSED (non minified) jQuery Version works!!!
Is there any funkyness going on in regards of parsing, it seems EE does something in the background. If I call the minified version through the google live link it works without issues:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript"></script>thanks !