My code works perfect if I want to perform an action when pressin the ctrl key...
$(document).keydown(function(e){
if(e.ctrlKey){
if($('.selected').parent().next().length == 0){
switchTabs($('.selected').parent().parent().find('a:first'));
return false;
}else{
switchTabs($('.selected').parent().next().children('a'));
return false;
}
}
});
However I only want this code to activate when I press only the right control button...
if(e.rightctrlkey)
doesn't work... if there is a correct method, what is it?