これは困惑しています。要素にHTMLを追加してからフェードインしたいのですが、実装してもフェードインしません。すぐに「スナップイン」するだけです。構文/順序は正しく見えます。誰もが私の論理に何か問題があると思います:
$('span.mySpan')
// fade out the empty span so it's hidden
.fadeOut('fast',function(){
$(this)
.html($restoreLink) // add the HTML to the hidden span
.fadeIn('slow') // now fade it in
})