I can prevent Alt key in Javascript with these codes:
$(window).keydown(function(event)
{
if(event.altKey == true)
{
event.preventDefault();
}
});
But if I want to prevent Win key from taking any default actions, can I?