How to trigger only if it match 2 events in Jquery? - by Codler I want to have a event that only triggers when you press space and move your mouse at the same time. How can you make that? Read the article
How to trigger drop in Jquery? - by Codler $(item).droppable({ drop: function(event, ui) { console.log("triggered"); } }); I try to call drop by $(item).trigger("drop", [{},{draggable : $(target_item)}]); But it doesnt work, any ideas? Read the article