I've got something like this.
<div class="someclass">
<label data-fieldid="191366" data-val="159" class="evLabel form-control">
Some Long Text
</label>
</div>
I made it so, that if the text is too long than the overflow hides by writing text-overflow:elipsis
, overflow: hidden
, and white-space:nowrap
.
I need to make it show tooltip-ish popup with the entire text (Some Long Text) on hover and possibly when it does know when this elipsis
is actually hiding something (So, when it is necesary). How to do something like that?