0
It is the z-index issue. You can give the tooltip element a higher z-index value than the slider's z-index via CSS. For example:
a.tooltip span {
z-index:5000;
....
}