Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can move my lists the way i want, from one UL to another. Everything works perfect! But, one of the lists have a "resize" option, so when i move LI from one UL to another, you can't resize it, cause the UL where the LI was located didn't have a resize attached to it.

$("ul").sortable({
    connectWith: "ul",
}).disableSelection();

$("#newsLayout li").resizable({
    grid: 10
});

i know i need to append something (maybe use live?), but my jQuery skills are not that good. Maybe some of you guys could help me out?

share|improve this question
provide more code. perhaps the list view with class names and ids? – RRStoyanov May 27 '11 at 0:22

1 Answer

Destroy the old resizable and create a new one after sortupdate:

 $("ul").sortable({
    connectWith: "ul",
    update: function() 
            {
              $("li").resizable('destroy');
              $("#newsLayout li").resizable({grid: 10});}
    }).disableSelection();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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