Good morning,
I have a question about loading order of libraries.
I found this: There is two jquery libraries :
1. Core
2. UI
Thus , the order is :
Load jquery.min.js (core)
Then :
Import bootstrap.min.js (Where you have Carousel)
Then ,
jquery.ui.js (UI) (Where you have accordion)
Anyway, we recommend to wrap all your code when document is ready :
$(function(){ // All your code here })
But how is this done to wrap all code?
How abour loading order of CSS files.
Best regards,
Otto