I suppose calling 3 javascript (jquery) files like this:
<script type="text/javascript" src="js/file1.js"></script>
<script type="text/javascript" src="js/file2.js"></script>
<script type="text/javascript" src="js/file3.js"></script>
On file2.js there are script or function goes wrong, for example, the called function does not exist. The consequences because error in file2.js are scripts in file3.js will not be executed.
Whether there is a way to script in file3.js still executed? Possible to bypass or ignore the error on file2.js?
Thank you.