Clicking on a selected link without using the mouse, using Firefox

Let's say I made have some link selected in my browser (for instance, if I do a CTRL + F and type "Questions", selecting the Questions tab on the top of this page).

I'd like to know if there's any way to click in the selected link without having to do it with my mouse.

Thanks!

4 Answers

You can do this with the Return key, so Ctrl-F, type the text of the URL, then hit escape. The focus should remain on the link you had highlighted. Hitting Return will open the link.

3

Use the apostrophe-key ' to enter Quick find (links only) mode.

Maybe also useful: F6 to move the keyboard focus (hard to explain, just try it out).

1

I also tried to find how to open link during searching without touching mouse. Solution provided by Paul works fine. If you want to make it even faster then install Auto Hotkey

And here I’ve written short script which opens searched link when you press Shift+Enter.

Version with opening link in new tab

; ==== #Firefox - Essential Firefox shortcut to open searched link / keyword - Open link in new tab ====
SetTitleMatchMode, 2
SetTitleMatchMode, Fast
#IfWinActive ahk_class MozillaWindowClass
Shift & Enter:: Send {ESC}{Ctrl Down}{Enter}{Ctrl Up}
Return

Version with opening link in current tab

; ===== ;#Firefox - Essential Firefox shortcut to open searched link / keyword - Open link in current tab ====
SetTitleMatchMode, 2
SetTitleMatchMode, Fast
#IfWinActive ahk_class MozillaWindowClass
Shift & Enter:: Send {ESC}{Enter}
Return

I see that it has been 5 years since you asked this question. Instead of searching for a word with Ctrl + F, I do the following: I have my "mouse keys" turned on and I use my keypad (with "Num Lock" on) to navigate my pointer to the word or image link. When the pointer becomes the "hand", then on my keypad, I first press / (forward slash) and then I press 5. (There is no need to press and hold down the / key. Just press and release it. Pressing the / key moves the focus to the word or image.) Then press the 5 on the keypad, and the link opens. I discovered this option through much trial and error. I wanted to find a way to be able to select any "clickable" item without using my mouse. Initially, I tried using the regular forward slash on my keyboard with the 5 on the keypad, but it did not work. [Also -- to right-click (using the keypad), press the minus key and then the 5. Again -- there is no need to hold down the minus key. Just press each key separately.]

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like