これが IE で機能しない理由を誰か教えてもらえますか?
$(function(){ // $(document).ready shorthand
$('#tempoffline').fadeIn('slow');
});
これが IE で機能しない理由を誰か教えてもらえますか?
$(function(){ // $(document).ready shorthand
$('#tempoffline').fadeIn('slow');
});
IE でのフェードインの問題については、 http: //www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/ で読むことができます。
しかし、スクロールはあなたのために仕事をしませんか?
私が見た別の可能な回避策は次のとおりです。
$("#divToHide").hide().fadeIn(6000);
多分あなたはそれをしたい:
$(function(){ // $(document).ready shorthand
$('#tempoffline').delay(40000).fadeIn();
});
またはその:
$(function(){ // $(document).ready shorthand
$('#tempoffline').fadeIn(40000);
});