By the error you've described, it sounds like you're trying to use Interface with the latest major version of jQuery (1.2). The last version of jQuery with which Interface works is 1.1.4. If you haven't already, you might take a look at the jQuery UI project which is intended to replace Interface, and works with the latest version of jQuery:
Web Site http://ui.jquery.com/ Documentation http://docs.jquery.com/Ui Mailing List http://groups.google.com/group/jquery-ui - Richard On Jan 18, 2008 6:54 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi all, > > I just upgraded from an old Interface version (I don't know what it > was, but I downloaded it from the jQuery documentation website a few > weeks ago) to the latest release, v1.2. Now my sortable list has > stopped working properly. > > Each of the portlets will now only drag once. The first drag for each > portlet works exactly as you'd expect, but as soon as you've initiated > a drag, it won't drag again. The other portlets will drag (until you > do them once too). > > There are no javascript errors, and if I revert to the older interface > release (keeping the html exactly as shown below) the drag events work > as desired. > > Any ideas? > > Thanks for your help > Steve > > <div id="columns"> > <div class="column"> > > <div class="portlet"> > <p>Test 1</p> > </div> > > <div class="portlet"> > <p>Test 2</p> > </div> > > <div class="portlet"> > <p>Test 3</p> > </div> > > </div> > <div class="column"></div> > <div class="column"></div> > </div><!-- /.columns --> > > > > $('.column').Sortable( > { > accept: 'portlet', > helperclass: 'sort_placeholder', > opacity: 0.7, > tolerance: 'intersect' > } > ); >