1
Exactly as it was said by colleague Maurivan. When we use Bootstrap we should import css files and js files.
In the case of the files js we must obey the order of precedence of who depends on whom. That in this case Bootstrap depends on Jquery, so it must come first in the loading order.
jquery.min.js should come before bootstrap.min.js
– Maurivan
My dear Maurivan, You saved my hero, it worked. Thanks
– An. Jorge
Why didn’t it work in the previous order?
– An. Jorge
Simply because bootstrap has jQuery as dependency and not the other way around. I recommend checking the documentation: http://getbootstrap.com/getting-started/#Whats-included
– Maurivan
Oh yes, thank you very much for the clarification.
– An. Jorge