1 document.onkeydown = function(e) {
2 if (!e) e = window.event;
3 var keynum = e.keyCode ? e.keyCode : e.which; // IE vs others
6 var link = document.getElementById('previous-card');
7 link.setAttribute('class', 'active');
8 location.href = link.getAttribute('href');
11 var link = document.getElementById('next-card');
12 link.setAttribute('class', 'active');
13 location.href = link.getAttribute('href');