I have made a draggable element that doesnt use jqueryui-draggable.
I want to use it alongside jquery ui droppable. Is it possible for jquery-ui droppable to accept any draggable that are not made by jquery-ui? and how?
Please see plnkr https://plnkr.co/edit/BzNuFtSUGaXmVhpNpqLG?p=preview
$(document).ready(function(){
// $("#drag2").draggable();
$("#drag").drags();
$(".droppable").droppable({
drop:function(event,ui){
$(this).append('dropped')
},
accept: ".draggable1"
})
})