I am trying to implement a JQuery slider next to some text and span
in a table cell.
<tr>
<td>
Transfert: <span id="Trans" /> <div id="TraSlider" />
</td>
</tr>
Unfortunately, the slider will not stick to the right or the text. It seems like div
is the issue. I tried to change it to span
, but the slider is not displayed properly anymore.
How can I achieve this (without moving the slider to another cell)?
P.S.: Here is a JsFiddle.