I agree that jQuery is secure and fine for the enterprise.
However, I would add two caveats based on personal experience we encountered after approving jQuery.
1) jQuery itself is secure, but jQuery plugins may have vulnerabilities (think XSS). When we approved jQuery for use in enterprise, developers suddenly were using random 3rd party plugins which were not easy to screen for vulnerabilities. If you are opening the door to jQuery, you need to be clear about what plugins in the jQuery ecosystem are allowed also.
2) jQuery makes it very easy to do UI effects, which can be both good and bad. We handed off our UI design to a design firm, who went crazy using jQuery for complex UI effects. The customer loved the visuals, but we realized too late that the jQuery UI code was cumulatively very slow in Internet Explorer. As a result, we spent a lot of time optimizing their code for IE. These were not known during dev as everyone was using Firefox/Chrome, which have great JavaScript engines.