In Sharepoint, when I need that a code access to a places where the user hasn't privileges, i use:
SPSecurity.RunWithElevatedPrivileges(delegate()
{
// DO SOMETHING WITH PRIVILEGES
});
but now I need to execute some code in javascript with elevated privileges
var context = new SP.ClientContext.get_current();
context.executeQueryAsync(); // NEED PRIVILEGES TO WORK
is it possible?