I am not very good at jQuery and want to know some basic things about jQuery jQ files.
What is the main difference between the file jquery min js & jquery js , for example. drag, drop, mouse, model, etc. Suppose I work with jQuery Dialog Model,
Downloaded from jQuery
js files saved in my web application and include js file as below
if I need to use drag and drop, then again I need to enable the appropriate jquery js file
<script src="ui/jquery.ui.widget.js"></script>
<script src="ui/jquery.ui.mouse.js"></script>
<script src="ui/jquery.ui.core.js"></script>
......... ....... .......
<script src="ui/jquery.ui.dialog.js"></script>
Now I find another way to manage only two files and do not need to include any separate js file for any other functions, for example. drag and drop. I downloaded only two js files
1. jquery.min.1.*.js and 2. jquery-ui.min.1.*.js
<script src="ui/jquery.min.1.*.js"></script>
<script src="ui/jquery-ui.min.1.*.js"></script>
: . , , jquery min js .
user744587