JQUERY - jQuery UI Nested Sortables 2 - help getting it working

Posted by nobosh on Stack Overflow See other posts from Stack Overflow or by nobosh
Published on 2010-05-18T04:45:53Z Indexed on 2010/05/18 4:50 UTC
Read the original article Hit count: 365

Hello, 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

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui