I have a very strange behaviour in my production environment. When I write a post and mention a user typing @ + username a suggestion list with user names should appear.
The list is actually created, but it only shows up for half a second.
Looking at the source code I found this
Suggestion list is always set to "display: none", but I don't know why and which script could be responsible for it. Any ideas what i can do or where to start with debugging?
The list is actually created, but it only shows up for half a second.
Looking at the source code I found this
HTML:
<ul style="position: absolute; z-index: 1001; display: none; top: 3460.87px; left: 539.5px;" class="autoCompleteList">some html with suggestions...
Suggestion list is always set to "display: none", but I don't know why and which script could be responsible for it. Any ideas what i can do or where to start with debugging?