tippy does not work in Firefox, MYBB
See original GitHub issueHi, I have a problem. I am using your lib in the MYBB forum system, in which it works perfectly in Google Chrome, but in Firefox latest version or (the newest version). It does not work for me but the weirdest thing is that it creates a tippy theme and it works for me, I leave images.
In google chrome, data-tippy

In Firefox, data-tippy

In Firefox, advanced JS, new tippy theme
That’s why it’s weird, because the tippy works in js. I mean, because it works in FIREFOX with this:
<style>
.tippy-tooltip.New-theme {
background-color: #ea8c00;
max-width:800px;
}
.tippy-popper[x-placement^='right'] .tippy-tooltip.New-theme .tippy-arrow {
border-right: 8px solid #ea8c00;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
}
</style>
<script>
tippy('.tooltip8k', {
content: "{$forum['description']}",
delay: 100,
arrow: true,
arrowType: 'sharp',
size: 'small',
duration: 500,
placement: 'right',
theme: 'New'
})
</script>
I really do not know why it does not work. I have entered its official site in firefox and it works for me, I also enter the codepen in firefox and it also works for me. Is there something that interferes? I comment for the second time I am using the MYBB forum system. Thanks and regards.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)


Top Related StackOverflow Question
If you have an inline script, you will need to move the CDN script to the bottom of the
<body>before that inline script, instead of using adeferattribute in<head>. The error should say lowercasetippythough…yes is tippy, that is to say in lowecase. Thanks, now it works for me, thanks for tippy! Greetings brother from Venezuela!