towards the right direction
document.body.addEventListener('keydown', e => { if (e.key === 's' && e.ctrlKey) { e.preventDefault(); console.log('ctrl+s pressed!'); return false; } });
Обсуждают сегодня