0

In our project if i place

 <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>

Then i am getting the follwing error

TypeError: can't convert undefined to object in jQuery

set: function( elem, value ) {

Please help me to solve this issue.Thanks in advance...

1
  • you need to include jquery.js also Commented Apr 24, 2013 at 5:11

1 Answer 1

1

jQuery UI depends on jQuery core library, so you need to include jquery script before including jquery ui script.

Add the following script before your script

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.