Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Following Alexei's comment I tried the following code which worked: window.addEventListener('keydown', function(event) { if (event.ctrlKey && event.altKey && event.key === 'l') ...
Answer
#1: Initial revision
Following Alexei's comment I tried the following code which worked: ```js window.addEventListener('keydown', function(event) { if (event.ctrlKey && event.altKey && event.key === 'l') { document.querySelector(".cbntphone_icon").style.display = "none"; } }); ``` We listen to any relevant keyboard-key-down event in the browser window, per the `if` statement.<br> If `Ctrl`+`Alt`+`l` are pressed, than the element becomes hidden.