I am working on an ASP.NET application that includes JavaScript to dynamically enable or disable validators on the page. In ASP.NET there is a web resource that is provided with the app that includes JavaScript functions for this purpose, such as ValidatorEnable(). When I run our application on Safari on a Mac, I am getting the error that it cannot find ValidatorEnable. This is a function we are calling in the jQuery(document).ready() callback function, so the expectation is that all resources are available at this point. Inspecting in the debugger reveals that the resource was never delivered to the client browser.
Has anyone seen something like this before? This problem does not occur on IE, Chrome, or Firefox on Windows, nor does it occur on Chrome or Firefox on the Mac. Safari seems to be the one that is not correctly receiving or processing the ASP.NET JavaScript validator functions.
Thanks in advance!