I have a website that works fine on Chrome and FF, but fails on Edge. When I look at the Console log (on Edge) it tells me certain javascript functions are undefined, if I switch the default Edge developer tool's debugger on I can see that one of my js files hasn't been loaded, but others have (See below). Console Log on FF and chrome report no errors or warnings. The page header is set to <!DOCTYPE html> and the js is included like this...
<script src="js/generalUtils.js" type="text/javascript"></script>
<script src="js/dlmUtils.js" type="text/javascript"></script>
<script src="js/md5.js" type="text/javascript"></script>
generalUtils.js and login.js load, but dlmUtils.js does not get loaded. (nb There are also a bunch of 'remote' js loaded from ajax.googleapis.com successfully.)
The javascript in dlmUtils.js runs fine in Chrome and FF and does not report any errors or warnings on the console.
Thoughts?
jonb
<script src='js\dlmUtils.js'shows up in the debugger window and does open, but in 'file explorer' type window to the left lists all scripts except dlmUtils.js !!!!