IE8 は 4 行目にエラーをスローします。
jQuery('#list script').each(function() {
var script=document.createElement('script');
script.type='text/javascript';
jQuery(script).text(jQuery(this).text()); //Error in IE8 does the field editing
document.body.appendChild(script);
}).remove();
ルーチンのjqueryエラー:
append: function() {
return this.domManip(arguments, true, function( elem ) {
if ( this.nodeType === 1 ) {
this.appendChild( elem );
}
});