This is a Firefox (v14 tested) bug for sure.
However, the good news is that I've discovered THREE easy solutions you can choose from, which will preserve your current webpage layout.
If that's not enough, I've also brought to the table a bonus jsFiddle with alternate markup for single .click() functionality too.
Reference: jsFiddle 1
Solution 1 HTML:
<div id="status">Initial</div>
Solution 1 CSS:
#status{
display: table;
}
Reference: jsFiddle 2
Solution 2 HTML:
<div id="status">Initial</div> <br />
Solution 2 CSS:
#status{
display: inline-block;
}
Reference: jsFiddle 3
Solution 3 HTML:
<div id="status">Initial</div>
Solution 3 CSS:
#status{
font-size: 28px;
}
And if you just want to use just 1 single jQuery Click Event Listener instead of using a whole mess of them, you can consider this Bonus Version that also uses the same bug-fix CSS as above:
Reference: jsFiddle Single Click
Solution Single Click HTML:
<div id="status">Initial</div>
<div id="links">
<a id="a1" href="#">Link 1</a>
<a id="a2" href="#">Link 2</a>
<a id="a3" href="#">Link 3</a>
</div>
Solution Single Click jQuery:
function showIt(message, opacity, duration) {
$('#status').stop().html(message).animate({opacity: opacity}, duration, 'easeInExpo');
}
jQuery('#links a').click(function(event) {
switch (this.id) {
case 'a1':
showIt('Foo!', 1, 0);
break;
case 'a2':
showIt('Bar!', 1, 0);
break;
case 'a3':
showIt('Quux...', 0, 3000);
break;
}
event.preventDefault();
});