Reputation: 65173
Here is my code for you all to play with: http://jsfiddle.net/SMqR9/1/ =D
works fine in Chrome, FF, Safari, Good Browsers, etc.
But when in IE7, when I click on "New Content" and drag, it moves the section it's in also (and at different speeds). Really weird behavior. Any ideas as to what is causing this?
Upvotes: 2
Views: 458
Reputation: 2101
Please see here for a working solution:
Most important part is this:
$j('ul').bind('mousedown', function(e) {
e.stopPropagation();
});
Which stops IE7 from having nested sortable elements bubble up the mousedown-event to their parent items. Make sure to use .bind(), as .live() only takes place after the event already bubbled up
Upvotes: 3