Stuck with this issue for the past 2 days :-( Trying to create draggable sortable list with dynamically added groups. Was able to create containers, but divs cant be dropped to these containers.. Can somebody point out where I am doing it wrong, I know that it has to be assigned to a variable, even tried that, still now working.. Fiddle is as follows..

http://jsfiddle.net/Sullan/mLHJW/

link|improve this question

52% accept rate
1  
can you explain your fiddle? – Ben Lee Jan 18 at 4:03
feedback

3 Answers

if dynmmcally created elements not working try using on in jquery version 1.7 . if you are using less than that , like 1.6 , 1.5 or something you can use live

example

$("p").on("click", function(){
alert( $(this).text() );
});

or

$("p").live("click", function(){
alert( $(this).text() );
});

insted of

$("p").click( function(){
alert( $(this).text() );
});

on ad live wil be added to the dynamically created elements

http://api.jquery.com/on/

http://api.jquery.com/live/

link|improve this answer
feedback
up vote 4 down vote accepted

Just repeated the call within the button click.. not sure whether its the right way.. but works out fine...

http://jsfiddle.net/Sullan/mLHJW/1/

link|improve this answer
feedback

try using this plugin http://docs.jquery.com/Plugins/livequery#Download

once you include it just use it like this (example from your code):

var test = $('ul.itemsList').livequery(function(){
                    $(this).sortable({
                        connectWith: $('.itemsList, .itemsList li')
                    });
               });  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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