I'm using doxygen 1.8.14 to generate document in .html from my C++ source code.
I'm having a problem in my document only with google chrome, all other web browsers (FireFox, Opera, Edge,...) are working fine. In (doxygen-generated) PageA.html. I have seveal topics tagged with "#", like:
# Topic 1 # {#tag_topic1}
Very lengthy text ...
# Topic 2 # {#tag_topic2}
Very lengthy text ...
# Topic 3 # {#tag_topic3}
Very lengthy text ...
In (doxygen-generated) PageB.html, I have several links point to those topics defined in PageA.html
Refer to [topic 1](PageA.html#tag_topic1) ...
Refer to [topic 2](PageA.html#tag_topic2) ...
Refer to [topic 3](PageA.html#tag_topic3) ...
When I open PageB.html in google chrome browser and click the links, the page navigates to PageA.html but does not scroll to the destination topic tagged with "#", it only gives a very quick flashing. When test it in all other web browsers, it opens the PageA.html and then smoothly scrolls to the desintation topic and also make a short "glowing effect" on the topic text.
How can I fix this problem for google chrome? Appreciate it for any suggestions, thanks.