Using Ctrl+F to find entry field
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()