We have validation rules in an external JS file that is being called via jQuery getScript:
$.ajaxSetup({async:false});
$.getScript('scripts/validation/createPosting.js', function(){ checkFoapalPercentage(); });
$.ajaxSetup({async:true});
The script works fine in all other browsers (Firefox, Chrome, and Safari).
Any idea why we're getting a Javascript error (Object expected) on a line that's referencing a method in the external JS file?
Thanks.