ie8では、jquery v1.8.3のこの行が原因でポップアップの問題に直面しています
this.insertBefore( elem, this.firstChild );
ここに関数があります
prepend: function() {
return this.domManip(arguments, true, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 ) {
this.insertBefore( elem, this.firstChild );
}
});
これがエラーのスクリーンショットです。
事前に感謝