Odd jQuery 'undefined' issue
Hello, all,
I've got a weird situation that's got me scratching my head.
I've got a form page, which includes an older version of jQuery (1.11.2) at the top of the page. Near the bottom of this page I am CFINCLUDING a .js file. Works great.
Tried updating to jQuery 3.5.1, and suddenly this included .js file breaks, stating that "'$' is undefined on line 11." But $ is being used on at least seven lines prior to line 11.
$('#thisForm').css({..}); /* THESE lines don't break */
$('#thisForm').attr(...);
...
function ums(val){
switch(val){
case 'a': case 'b': case 'c':
$('#thisForm').css({...}); /* THIS is the line that breaks */
break;
default: break;
}
ums($('#thisSelect').val()); /* Triggered by this line */
Totally stumped on this one. Ideas?
V/r,
^ _ ^
