Response title
This is preview!
I use no video on my site and am not sophisticated enough to really understand what's going on here but it seems related to the bug report:// HACK : override appendChild, replaceChild, insertBefore for IE, since it doesn't support DOM events
if (isInternetExplorer)
{
var appendChildOriginal = doc.body.appendChild;
doc.body.appendChild = function(element)
{
appendChildOriginal(element);
var tag = element.tagName.toLowerCase();
if ("video" == tag)
{
ProcessVideoElement(element);
}
}
© 2013 jQuery Foundation
Sponsored by and others.