I have an anchor tag that shows a tooltip on hover. If you click on it, is should open a modal window. This works fine in Chrome, etc. but not in Firefox (Win or Mac). I'm assuming that FF has an issue with combining the two. The backdrop shows up but not the modal box. Here's the code:
Anchor:
<a class="label warning" href="##" id="newEventsToolTip" title="New Events Waiting" data-content="You have new events that need action. Click the <span class='label warning'> #session.newEventsCount# </span> icon to see these events."> #session.newEventsCount# </a>
JS:
$("#newEventsToolTip").popover({
placement: 'below',
offset: 30 ,
html: true,
show: true
});
$("#newEventsToolTip").click(function() {
$("#newEventsModal").modal({
show: true,
backdrop: true
});
});
I have an anchor tag that shows a tooltip on hover. If you click on it, is should open a modal window. This works fine in Chrome, etc. but not in Firefox (Win or Mac). I'm assuming that FF has an issue with combining the two. The backdrop shows up but not the modal box. Here's the code:
Anchor:
JS: