JSFiddle - React, Tailwind, and code Playground

by Vijayakrishnan Krishnan

JavaScript

$(document).keyup(function(e) {
    if(e.keyCode == 44) {
        // give it some time to ensure the image is in the clip board
        setTimeout(sendToServer, 2000);
    }
});

function sendToServer() {
    alert('processing print screen');
}