I'm using JQuery to add a lot of functionality to SAS HTML output files. Basically I'll be adding to previously static HTML tables, like the ability to highlight rows, re-sort, sum by subgroups, etc.
The catch is that NO ONE outside of my organization can see the data in these tables. The files will not be online, just saved on our secure drives. But I'm worried about doing something inadvertently that would expose pieces of data to any external servers or attackers.
I've read several articles and questions about JQuery security, like Is JQuery secure? and jQuery ajax security, but I really do want to know if there's anything I need to avoid in my case so that nothing surprising will happen.
So given that I won't be using AJAX or any plugins hosted online, I have one main question:
Are there any non-obvious things I could do in JQuery that would create a chance of data leaking, relative to just displaying the data in JavaScript-free HTML?
My apologies if this seems like a question I could have answered on my own. While I think everything should be fine, I'm not a security expert, and I want to be certain about this before my potentially awesome project brings the company down in flames.
--EDIT: in response to Phillip's comments, I should clarify that anyone accessing the files will already have been required to give their credentials, have project-specific clearance, and sign a data-nondisclosure agreement such that any attempt to move the files from a secure location would be a violation of the conditions of access.