Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Using Ctrl+F to find entry field

  • 1 resposta
  • 3 têm este problema
  • 3 visualizações
  • Última resposta por cor-el
  • Arquivadas

Is it possible to use Ctrl+F shortcut to specifically select a input box? Or is it simply limited to text?

I know it is possible to just tab through the website until you reach said input box, but this method is one I would prefer.

Thank you for your help in advance.

Is it possible to use Ctrl+F shortcut to specifically select a input box? Or is it simply limited to text? I know it is possible to just tab through the website until you reach said input box, but this method is one I would prefer. Thank you for your help in advance.

Todas as respostas (1)

You can't do this via Ctrl+F.

You can use a bookmarklet to set focus to that field.

  • javascript:void(document.querySelector("<selector for element>").focus());
  • right-click the input field on the web page
  • click Inspect Element to open the Inspector
  • right-click the element in the left pane of the Inspector to open the context menu
  • click "Copy Unique Selector" to copy the selector to the clipboard
  • paste the selector between the quotes of querySelector("...").focus()