You can try
$(document).bind("keydown", function(e) {
if (e.ctrlKey) {
if(e.keyCode == 37) {
document.getElementById("prevButton").click();
}
else if(e.keyCode == 39) {
document.getElementById("nextButton").click();
}
}
});
code 37 for the left arrow and code 39 for the right arrow
source
share