Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other [Solved] Firefox Anchor Links Reply To: [Solved] Firefox Anchor Links

#148532
SmArgus
Participant

Hola! This problem was absolutely infuriating me to no end. (although most coding problems do :)

I am using FireFox 23.0.1 and unfortunately the display:inline fix above was insufficient as it broke other portions of the layout.

Fortunately, I stumbled upon a JavaScript fix which successfully gets around the bug so thought I would share it too in hopes of getting a couple of fixes all in one place.

I inserted the following into the HEAD of the HTML doc:

<SCRIPT LANGUAGE=JavaScript>
function now(){
    window.location.reload(true);
}
</SCRIPT>