I am working on ipad drag and drop and i tried to make the draggable element visible on every other div but it works only in parent div, my code is:
$('#draggable').draggable({
zIndex: 20,
drag: function(event){...},
helper: 'clone',
position: 'absolute',
owerflow: 'hidden'
})
the html code looks like something like this:
<tr>
<td>
<div id="draggable"></div>
</td>
<td>
<div id="dropDiv"></div>
</td>
</tr>
When i am dragging the element its visible in the first td where it normally is, but when i try to drag it over the <div id="dropDiv"></div>
it goes under the "dropDiv".
These divs and tds have multiple css classes which i cant display here.
I have already tried multiple z indexes but made no impact.