I have included jquery and jqueryui from google api as follows

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>

I want to use jquery ui sortable facilities. Do I need to include any more libraries to do so ?

I tried

<script type="text/javascript">
    $(function() {
        $("#sortable").sortable();
    });
    </script>

but didnt worked for me, please help

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Reverse the script references.

First you need jQuery (The Core), then jQuery UI.

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3 jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
link|improve this answer
Thanks a lot:) ; – Thomas John Oct 16 '10 at 3:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.