最初にslideDown()が機能しないのはなぜですか?
$('#lnkInfo').click(function (e) {
e.preventDefault();
$(this).blur();
if ($(this).text() == 'More info') {
$('#spnMoreInfo').slideDown(200);
$(this).text('Less info');
}
else if ($(this).text() == 'Less info') {
$('#spnMoreInfo').slideUp(200);
$(this).text('More info');
}
});
編集: Firefox 22.0を使用