I have a svg and I can draw multiple shapes on this svg. Now my requirement is I want to listen keyboard events like ctrl+C, ctrl+V, ctrl+D, Esc, Delete so that I can copy,
Because SVG is not an input-type, listen for the event on the window instead:
$(window).on('keypress', function (evt){ ... })