0

I'm interested in using the following JQUERY - http://lucaswoj.com/2010/01/jquery-ui-nested-sortables-2/

However, I can't seem to get a demo instance of the plugin work.

Here's the code I'm using:

<script type="text/javascript">
    $('#findit').nestedSortable({});
</script>




<div >
  <ul id="findit">
     <li>
        List Item Content
        <ul></ul>
     <li>
     <li>
        List Item Content 2
        <ul></ul>
     <li>
     <li>
        List Item Content 3
        <ul></ul>
     <li>
     <li>
        List Item Content 4
        <ul></ul>
     <li>

  <ul>
</div>

Any ideas? Thanks

1 Answer 1

1

I didn't look at the jquery but you didn't close your unordered list properly

..
     <li>
        List Item Content 4
        <ul></ul>
     <li>

  **</ul>**
</div>
Sign up to request clarification or add additional context in comments.

1 Comment

Thanks Timmy. Just fixed that but it still isn't working. Are you able to get it to work on your end?

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.