Upon the initial page load, I encounter an issue with the tooltip when I hover over the '?' glyphicon symbol. However, after logging into the website and once the page has fully loaded, I am able to see the entire title script written inside the HTML when hovering over the symbol.
The text displayed upon hovering is the title with a close button 'x' inside the tooltip.
About your score<button type=button class=close data-dismiss=popover aria-hidden=true onclick=$('#abcPopover').popover('hide')>×</button>
I have made the tooltip clickable. Upon clicking on the '?' glyphicon symbol, the popover does not appear on the first click and the script now hides. It only works properly on the second click, where the popover appears as expected. This issue seems to occur specifically when the page initially loads and when clicking on the '?' glyphicon symbol causes the title to disappear, only appearing correctly on the second click when the popover shows up.
This is the HTML code snippet:
<a href="#" id="abcPopover" data-html="true"
title="About your score<button type=button class=close data-dismiss=popover aria-hidden=true onclick=$('#abcPopover').popover('hide')>×</button>"
data-toggle="popover" data-content="{{abcTooltip}}" ng-click="open()"><i class="glyphicon glyphicon-question-sign"></i></a>