how to clone and drag an icon using jquery?
$( ".selector" ).draggable({ helper: "clone" });
|
|
var helper = $( ".selector" ).draggable( "option", "helper" );
$( ".selector" ).draggable( "option", "helper", "clone" );
I found these codes,but where to add this?
|