Accourding to this documentation (jQuery UI Touch Punch) I tried to install the following packages with npm in order to implement them locally in my project:
- jquery
- jquery-ui
- jquery UI Touch Punch
The first problem I had is, in the node_module folder of jquery-ui, jquery-ui.min.js is just not existing. Where can I find it?
The second problem is, when I use
<script type="application/javascript" src="assets/js/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"></script>
in the head of my website, it`s not working, but
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"></script>
How could that be?
I hope someone can help me. It´s driving me crazy.