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
$("body").bind("keydown",keyDown); function keyDown(e){ if((e.ctrlKey)&&(e.keyCode == 88)&&(e.keyCode == 13)){ alert("Keys down are Ctrl + x + Return"); } }