File "keybnav.js"
Full path: E:/sites/Single15/tinmung2007/webroot/GIADINHTANHIEN/Dem-12-2015 hop mat/res/keybnav.js
File size: 552 B
MIME-type:
Charset: utf-8
$(document).ready(function(){
$(document).keydown(function(e){
if(typeof _jaWidgetFocus!='undefined'&&_jaWidgetFocus) return true;
var k=e?e.keyCode:window.event.keyCode;
var l;
switch(k) {
case 38:l=$('#upbtn>a'); if(!l.length) l=$('#indexbtn>a'); if(l.length>0) window.location=l.attr('href'); break;
case 39: l=$('#nextbtn>a'); if(l.length>0) window.location=l.attr('href'); break;
case 37:l=$('#prevbtn>a'); if(l.length>0) window.location=l.attr('href'); break;
default: return true;
}
return false;
});
});