A: 

You can get the id of the dragged and dropped element. With that knowledge, go and get the id of the next element one the same level with :

$('#id_of_the_dragged_element').next().attr('id')

cube1893
Thanks @cube1893, that was a good hint!
Martin
You're welcome!
cube1893