[Solved] JQuery script not working at all


So the issue here was that I was using the old fashion javascript onchange event with a JQuery script. Apparently the 2 don’t like to play together. As soon as I change it to use a JQuery $('#Branch').on('change', function() { in my document ready script it worked fine.

solved JQuery script not working at all