Look at this code snippet:
$('#clickme').click(function(){blinkText($('#SendedText')); });
function blinkText(element)
{
$(element).fadeIn('slow');
$(element).fadeOut('slow');
}
This code works fine in all browsers except Firefox 3. Why does Firefox show and hide text so slowly? How can I fix this behavior?