jQuery UI 1.6rc4 is not compatible with jQuery 1.3. Upgrading to 1.6rc5 should fix any issues with callbacks.
- Richard On Mon, Jan 19, 2009 at 3:37 PM, Randy <[email protected]> wrote: > > I've noticed none of the events work with droppable in jQuery 1.3. > They work fine with 1.2.6. > > (Tested with Firefox 3) > > On Jan 13, 12:48 pm, sk <[email protected]> wrote: > > Hello, > > > > I am having a problem where the drop event of thedroppableis not > > fired. My page is big and I tried to copy the parts to a new page to > > reproduce the problem, however when running the stripped page, it > > would work. I am not really sure what to check for anymore. All other > > events are being fired. Here is how I defined my draggable/droppables. > > > > // this is the draggable. > > var id = "#someId" > > > > $(id).draggable( > > { > > helper: 'clone' > > }); > > > > // this is thedroppable > > > > $(".zone").droppable( > > { > > accept: function(draggable) { return true }, > > drop: function(ev, ui) > > { > > alert("T"); > > }, > > > > over: function(ev, ui) > > { > > //debugger; > > }, > > > > out: function(ev, ui) > > { > > //debugger; > > }, > > > > activate: function(ev, ui) > > { > > //debugger; > > }, > > > > deactivate: function(ev, ui) > > { > > //debugger; > > } > > }); > > > > Any idea, how I can debug this issue? > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
