jquery.min.js & jquery-ui.min.js Vs jquery.* * .js file? -
jquery.min.js & jquery-ui.min.js Vs jquery.* * .js file? -
i not conversant jquery , want know basic things jquery's js files. what basic difference in jquery min js & jquery js file e.g. drag, drop, mouse, model etc.. suppose working jquery dialog model,
downloaded jquery
js files saved in web application , include js file given below
if need utilize drag & drop 1 time again need include respective 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 find way manage 2 files , not need include separate js file other functionality e.g. drag, drop. downloaded 2 js files
1. jquery.min.1.*.js , 2. jquery-ui.min.1.*.js <script src="ui/jquery.min.1.*.js"></script> <script src="ui/jquery-ui.min.1.*.js"></script> my question , 1 right & best way deal issue. btw sense comfort using jquery min js files. say
the min versions minified. non-essential characters removed files smaller , download times shorter.
i'd recommend using minified version, unless you're debugging jquery (in case, working readable source code more of import download speed).
jquery
Comments
Post a Comment