"jquery is not defined when using jquery-ui-1.10.1.custom.js:" Code Answer

31

You need to declare the main JQuery library and you have two declarations of jquery-ui-custom, one is the original one and the other is minified version. try deleting the other one. I suggest you just delete the one that is unminified

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="JS/jquery-ui-1.10.1.custom.min.js" type="text/javascript"></script>  
/** 
 *Your other scripts below 
 */
By HenchHacker on April 5 2022

Answers related to “jquery is not defined when using jquery-ui-1.10.1.custom.js:”

Only authorized users can answer the Search term. Please sign in first, or register a free account.