Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Edit XML with PHP Re: Edit XML with PHP

#78581

ok, now I would like to make the boxes sortable with jquery. this is what ive got but it’s not working. whats wrong here?

Code:
$(function() {
$( “.postbox” ).sortable({ handle: ‘h3.hndle’ });
var handle = $( “.selector” ).sortable( “option”, “handle” );
$( “.postbox” ).sortable( “option”, “handle”, ‘h3.hndle’ );
$(“.postbox”).disableSelection();
});

It’s even still selectable…