Home › Forums › Other › [Solved] Firefox Anchor Links › Reply To: [Solved] Firefox Anchor Links
August 29, 2013 at 1:36 pm
#148532
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>