I'm having an issue with my tooltip. I would like my tooltip to look like this:
However, the actual result is like this:
Here is the HTML & jQuery code I am using:
<td style="padding-left:5px;padding-right:5px;" align="left" data-toggle="tooltip" data-placement="top" data-container="body" title="segment" >
<script type="text/javascript">
$(function () {
$("[data-toggle='tooltip']").tooltip();
});
</script>
I am working with bootstrap version 3.3.2.
Your assistance is greatly appreciated.
Thank you.