I can get IE to remove objects as long as it is not the current draggable object. This is working on Chrome and Firefox. Is there something I'm doing wrong?

<html>
<head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
</head>
<body>
    <ul id="list">
    <li id="test-1" class="dropme">One</li>
    <li id="test-2" class="dropme">Two</li>
    </ul>
    <div id="bucket" style="border:1px solid black">
        <p>Drop items here and they should be removed.</p>
    </div>
    <script>
        $("#list").sortable({
        items: 'li'
    });   
    $('#bucket').droppable({
        drop: function(event, ui) {
            $(ui.draggable).remove();
        },
        accept: '.dropme'
    });   
    </script>
</body>
</html>
link|improve this question

80% accept rate
What does ui.draggable return exactly? In that selector does it not need to be a string of all draggable DOM elements? If it is then ignore this, I couldn't find it in the UI documentation. Also give the page a DOCTYPE as IE is probably in quirks mode and won't be working correctly. – Ben Stephenson May 13 '11 at 16:52
ui.draggable is the currently dragged element in most jQuery UI drag events. In fact, it's already a jQuery object, there is no need to do $(ui.draggable). – DarthJDG May 13 '11 at 17:01
@Darth. Thanks, everyday's a schoolday! – Ben Stephenson May 13 '11 at 17:06
feedback

1 Answer

up vote 2 down vote accepted

The ui.draggable and drop function are a little quirky in IE. Try this:

<html>
<head>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
    <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
</head>
<body>
    <ul id="list">
    <li id="test-1" class="dropme">One</li>
    <li id="test-2" class="dropme">Two</li>
    </ul>
    <div id="bucket" style="border:1px solid black">
        <p>Drop items here and they should be removed.</p>
    </div>
    <script>
        $("#list").sortable({
        items: 'li',
        stop: function(event, ui) { 
            if (deleteMe) {
                        ui.item.remove();
                        deleteMe = false;
                    }
        }
    });   
    $('#bucket').droppable({
        drop: function(event, ui) {
            deleteMe = true; 
        },
        accept: '.dropme'
    });   
    </script>
</body>
</html>
link|improve this answer
Nice work Mike....adding a flag was a neat little trick +1 – Raja May 13 '11 at 17:23
That worked! Much appreciated. I hate special coding for IE! errr! – getSurreal May 13 '11 at 17:59
^ x infinity. Thank you much. – Ken Feb 6 at 23:57
feedback

Your Answer

 
or
required, but never shown

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