//A.php
<script type="text/javascript">
$(document).ready(function(e) {
$('div').load("B.php");
});
</script>
<div></div>
//B.php
<script type="text/javascript" src="B.js"></script>
//B.js
console.log(123);
I have a console error
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience
when I use jquery ajax load another page content external script links
Anyone know how to fix this?