I am trying to build a UI using thymeleaf and i get the following error in the console
below is the code for my html.
can someone please let me know what i am doing wrong.
You have added jQuery-ui but it requires jQuery. Same for Bootstrap.js, it requires jQuery. Also, you're adding a number of libraries and stylesheets twice. For example, if you have bootstrap.min.js, you don't need bootstrap.js, because the former is a minified version of the later.
To working with Bootstrap Js, There choice is Jquery. Without Jquery Bootstrap js will not work correctly.
So, first Add jquery.min.js and then try to insert bootstrap.min.js. Like,
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
And then hope all errors will gone.