I have a function from the jquery.event.drop plugin found at http://threedubmedia.com/code/event/drop/demo/selection:
$(selector).drag("start", function( ev, dd ){});
How can I convert this to work using the on() method?
Something like this (not working):
$(document).on("drag", selector, "start", function(ev, dd){});
onmethod?