How can I trigger the PrtScn i.e, PrintScreen keyboard event through some jQuery function and then save that captured image to server?
function ErrorLog(errorCode, errorMessage) {
// Here i want the screenshot of the user's screen where the error have occurred ...
var _screenShot = "";
SendErrorToServer(errorCode, errorMessage, _screenShot);
}
Can you guide me?