I need to use the jquery-ui library. Things work fine when not in a Shadows page, starting from a blank page.
I thought JQuery was finally loaded in a default Shadows. Remembered incorrectly? When I attempted to run a function from the UI library the console eluded to JQuery not found, etc.
Then I added JQuery manually (a CDN) in the header or footer. I've also added as a JS resource.
The difference now is: the function I'm calling isn't defined or it's not a function. This is usually a conflict with another script or the sequence (order) the scripts are loaded is wrong. Or maybe that there is a second instance of JQuery called?
The order of scripts, I think, are:
load JQuery
load the jquery-ui library
load the plugin extended library (if there is one) -- none in this case.
I'm not sure what I'm missing.
Thanks,
Scott
I thought JQuery was finally loaded in a default Shadows. Remembered incorrectly? When I attempted to run a function from the UI library the console eluded to JQuery not found, etc.
Then I added JQuery manually (a CDN) in the header or footer. I've also added as a JS resource.
The difference now is: the function I'm calling isn't defined or it's not a function. This is usually a conflict with another script or the sequence (order) the scripts are loaded is wrong. Or maybe that there is a second instance of JQuery called?
The order of scripts, I think, are:
load JQuery
load the jquery-ui library
load the plugin extended library (if there is one) -- none in this case.
I'm not sure what I'm missing.
Thanks,
Scott
Comment