I am trying to drag and drop functionality by using jstree.This function is working fine but mouse pointer not dropping text. It's show pointer with selected text. my question is, How to remove text with mouse pointer?
<select id="tableList" name="tableList" size="25" style="width: 223px;height:60px;"></select>
$(document).on('dnd_stop.vakata', function (e, data) {
var newOption = $('<option class="list-group-item" value="'+data.data.nodes+',">'+data.data.nodes+'</option>');
$('#tableList').append(newOption);
});