Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a droppable with a drop event handler:

$(this).droppable({
  drop:function(){
    console.log('OMG You Dropped It!');
  }
});

I have a draggable:

$(this).draggable();

What I want to do is trigger the drop event handler on the droppable without actually dragging and dropping the draggable. I want to simulate the actual behavior without physically performing the behavior.

I thought something like this would do:

$(droppable).trigger('drop', [draggable]);

Unfortunately, it's not quite that simple. Does anyone know how I can accomplish this?

share|improve this question

2 Answers

up vote 8 down vote accepted

You should move the code in your drop handler to a separate function.
You can then call the function both in the handler and elsewhere.

share|improve this answer
The above is simplified sample code to illustrate what I want to accomplish, not the code. Anyway, how would this resolve my issue? – Kappers Jul 6 '10 at 16:27
You can call the function instead of triggering the event. – SLaks Jul 6 '10 at 16:37
snipplr.com/view/24431 This is an example of what @Slaks might means. =) – Roylee Jul 31 '12 at 7:16

You can trigger the function associated with the drop call via the option-method:

$("#droppable").droppable({
        drop: function(event, ui) {
            do stuff }
    });
var drop_function = $("#droppable").droppable.option('drop');
drop_function();

This way you get whatever would happen when dropping something on droppable. Of course you could just execute the function instead of assigning it. It's nonetheless a good idea to assign a function to drop, that you define somewhere else, just for clarities sake.

share|improve this answer
+1 for being able to call outside of scope of the original function definition (e.g.) during a QUnit test. – StuperUser Dec 7 '10 at 11:50
1  
New syntax is: $("#droppable").droppable('option', 'drop'). – StuperUser Dec 7 '10 at 11:54
@StuperUser i don't get it. how does the $("#droppable") know which element was dragged and droped on it? – adardesign Dec 8 '10 at 21:51
In the 'drop' event handler function for the droppable, the dropped element is: ui.draggable. Check the drop event: jqueryui.com/demos/droppable/#event-drop for more details. – StuperUser Dec 9 '10 at 11:11
@StuperUser How do you init both of the params during function call? drop_function('event','ui-draggable'); – Roylee Jul 31 '12 at 7:16
show 3 more comments

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.