I am including some related content on misc. web pages by adding a tag near the end of the
tag, which then loads other
I find the same problem,only happen in IE.
jQuery‘s html()
method chains is: html>append>domManip>clean
clean()
method use innerHTML
make string to DOM, innerHTML
in IE has a bug that script
tag will immediately load(first load), jQuery evalScript
script tags at the end of domManip
method(ajax load).then script file load twice in IE.
I think jQuery should fix this problem,update the clean() method