Response title
This is preview!




I just solved this. It's the html comments at the end of the div's. Those were messing up the jquery on line 4103 in IE8 and IE7. 'this.nextSibling' was stored in the DOM as DispHTMLCommentElement. Appears this was causing the issues. I'm not sure if saving comments in the DOM is standard or not. Appears that neither Safari, Chrome or FF do that.
after: function() {
if ( this[0] && this[0].parentNode ) {
return this.domManip(arguments, false, function( elem ) {
this.parentNode.insertBefore( elem, this.nextSibling );
});
...© 2012 jQuery Foundation
Sponsored by
and others.
