I am working on adding tabs to a page and when inspect using Firefox, I’m seeing the coding pointing to Jquery files in the system - in the Design folder.
How can I get it to stop doing this?
I see the information above, but I’m not sure where I would perform this task.
If this information is not helpful you might want to contact Support directly at technical_support@percussion.com - if we can get more detail on exactly what you are trying to do and how you are implementing jQuery UI, we might be able to help with specific workarounds.
It might also be useful if we could select our jQuery version in the admin panel somewhere. I’m getting an error currently that getPreventDefault() has been depreciated and to use defaultPrevented but I can’t since Percussion is loading an older library.
We’re trying to use noConflict to resolve the problem getting to the layout tab from the content tab caused by additional reference to jquery mentioned here. But it doesn’t seem to work. Does anyone have any workarounds for this. We need to the latest version of jquery to use the latest foundation version. Thanks in advance!
When is CM1 going to upgrade from outdated 1.7 to the latest version? I had to use two jQuery - one for CM1 and one for Accessible Menu (v1.10.2 using no conflict script). I’d hate when two scripts loaded since both are big files…
Resolved the issue. In case anyone else runs into the issue I had. I needed to reset the globally scoped variables to the first loaded jquery. Just needed to add “true”.
code end up being:
var jq = jQuery.noConflict(true):
jq(document).foundation();