Is there any way to catch key combination ctrl+x+return in jquery(or javascript), such that if user presses this key combination, a function
simply just type like this:
document.getElementById('yourelementid').onkeydown = function(){ if(event.ctrlKey===true && event.keyCode==88){ //your code goes here } } //no depedency needs. pretty straight-forward