For those who use qtip (quite popular). First add a class to each of your overflow elements.
<span class="ellipsis-text">Some very long text that will overflow</span>
Then use the jQuery selector to select several such elements and apply the qTip plugin (or any other hint that comes to mind) to your elements as such:
$('.ellipsis-text').each(function() { if (this.offsetWidth < this.scrollWidth) { $(this).qtip({ content: { text: $(this).text() }, position: { at: 'bottom center', my: 'top center' }, style: { classes: 'qtip-bootstrap',
source share