jQuery .load() call doesn't execute JavaScript in loaded HTML file

后端 未结 13 1916
难免孤独
难免孤独 2020-11-22 08:28

This seems to be a problem related to Safari only. I\'ve tried 4 on Mac and 3 on Windows and am still having no luck.

I\'m trying to load an external HTML file and

13条回答
  •  暖寄归人
    2020-11-22 08:46

    You've almost got it. Tell jquery you want to load only the script:

    $("#myBtn").click(function() {
        $("#myDiv").load("trackingCode.html script");
    });
    

提交回复
热议问题