Google search “go to results” keyboard shortcut
up vote
5
down vote
favorite
In Chrome if I make a Google search and have a list of results, is there a keyboard shortcut to go to the links quickly and switch between the list of results? E.g. in Opera one can achieve it by pressing Tab and using the Up/Down arrows.
google-chrome
add a comment |
up vote
5
down vote
favorite
In Chrome if I make a Google search and have a list of results, is there a keyboard shortcut to go to the links quickly and switch between the list of results? E.g. in Opera one can achieve it by pressing Tab and using the Up/Down arrows.
google-chrome
 
 
 
 
 
 
 See answer here: superuser.com/a/1237754/407543
 – infokiller
 Aug 4 '17 at 18:12
 
 
 
 
 
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
In Chrome if I make a Google search and have a list of results, is there a keyboard shortcut to go to the links quickly and switch between the list of results? E.g. in Opera one can achieve it by pressing Tab and using the Up/Down arrows.
google-chrome
In Chrome if I make a Google search and have a list of results, is there a keyboard shortcut to go to the links quickly and switch between the list of results? E.g. in Opera one can achieve it by pressing Tab and using the Up/Down arrows.
google-chrome
google-chrome
edited Jul 21 '16 at 12:47
asked Jul 21 '16 at 12:17
cerebrou
14818
14818
 
 
 
 
 
 
 See answer here: superuser.com/a/1237754/407543
 – infokiller
 Aug 4 '17 at 18:12
 
 
 
 
 
add a comment |
 
 
 
 
 
 
 See answer here: superuser.com/a/1237754/407543
 – infokiller
 Aug 4 '17 at 18:12
 
 
 
 
 
See answer here: superuser.com/a/1237754/407543
– infokiller
Aug 4 '17 at 18:12
See answer here: superuser.com/a/1237754/407543
– infokiller
Aug 4 '17 at 18:12
add a comment |
                                3 Answers
                                3
                        
active
oldest
votes
up vote
2
down vote
Google have removed this feature, so you can't just turn it out like you used to be able to. The way you used to be able to do this was through:
Google Search > Settings > Search Settings > Google Instant Prediction > On
I was so sad to see this feature go that I wrote a hack to re-engineer it last night. So far it only works with Google Chrome, but can be adapted to work with all the others:
- Install Chrome extension ShortKeys.
- Click on the ShortKeys menu and select "Options"
  
 
- Click on "Add" and fill in the following fields:
Keyboard Shortcut: tab
Behavior: Run JavaScript
Label as: Result Picker
 - Paste the following JavaScript into the JavaScript code to run: 
 
 - document.selectedResultId=0
 function selectResult(newId){
 els = document.querySelectorAll("div.r h3")
 if(newId < 0 || newId >= els.length)
 return //Could modify for page nav...?
 rp = document.getElementById("result-pointer")
 if(rp != null){
 rp.remove()
 }
 document.selectedResultId=newId
 el = els[newId]
 lnk = el.firstElementChild
 el.innerHTML = "<div id="result-pointer" style="position:absolute;left:-15px;">></div>" + el.innerHTML
 lnk.focus()
 }
 document.onkeyup=function(event){
 if(event.keyCode==38)
 selectResult(document.selectedResultId-1)
 if(event.keyCode==40)
 selectResult(document.selectedResultId+1)
 if(event.keyCode==13){
 var el = document.querySelectorAll("div.r h3")[document.selectedResultId]
 var lnk = el.parentElement
 var url = lnk.href
 if(event.ctrlKey){
 var win = window.open(url,"_blank")
 win.blur()
 window.open().close()
 }
 else{
 document.location = url
 }
 }
 }
 selectResult(0)
 
 
- Configure the Activation Settings: 
Active while in form fields (Checked)
Websites (Only specific sites)
URLS (one per line): *.google.*
This is what the Options page should look like

- Click Save and then close your browser.
Instructions:
- When you restart you should see a little blue ">" appear by search 
 results when you hit tab.
- The up/down arrow keys make it cycle through the results. 
- Hitting "Enter" will navigate to the highlighted result. 
- Hitting "Ctrl+Enter" to open the result in a new tab. (note: on a Mac this is the actual - controlkey, not- command)
Happy Searching!
 
 
 1
 
 
 
 
 +100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
 – Brad Cupit
 Jul 31 '17 at 14:57
 
 
 
 
 
 
 
 
 
 @BradCupit did you get it to work?
 – Robino
 Jul 31 '17 at 15:20
 
 
 
 
 
 1
 
 
 
 
 your steps above? yes, they definitely work! Thank you so much!!
 – Brad Cupit
 Jul 31 '17 at 15:47
 
 
 
 
 
 
 
 1
 
 
 
 
 On a Mac I was able to get Cmd+Enter to open tabs in the background. Change- document.onkeyupto- document.onkeydown, then change- if(event.ctrlKey){to- if(event.metaKey){and remove the calls to- win.blur()and- window.open().close()
 – Brad Cupit
 Jul 31 '17 at 21:49
 
 
 
 
 
 1
 
 
 
 
 @BradCupit - updated to match new Google HTML.
 – Robino
 Nov 27 at 22:03
 
 
 
|
show 1 more comment
up vote
1
down vote
Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons. 
 
 
 
 
 
 
 It does not work for me. Is it a glitch?
 – cerebrou
 Jul 22 '16 at 1:33
 
 
 
 
 
 
 
 
 
 That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
 – Jonatan Öström
 Jul 22 '16 at 9:02
 
 
 
 
 
 
 
 
 
 
 
 The answer below also works for me
 – Jonatan Öström
 Jul 22 '16 at 9:05
 
 
 
 
 
 3
 
 
 
 
 This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
 – idbrii
 Jul 31 '16 at 18:07
 
 
 
 
 
 
 
 
 
 unfortunately Google has disabled Google Instant as of July 2017
 – Brad Cupit
 Aug 1 '17 at 12:43
 
 
 
add a comment |
up vote
0
down vote
Just use your arrow keys ←↕→ and then press Enter when you are at the desired result.
add a comment |
                                3 Answers
                                3
                        
active
oldest
votes
                                3 Answers
                                3
                        
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Google have removed this feature, so you can't just turn it out like you used to be able to. The way you used to be able to do this was through:
Google Search > Settings > Search Settings > Google Instant Prediction > On
I was so sad to see this feature go that I wrote a hack to re-engineer it last night. So far it only works with Google Chrome, but can be adapted to work with all the others:
- Install Chrome extension ShortKeys.
- Click on the ShortKeys menu and select "Options"
  
 
- Click on "Add" and fill in the following fields:
Keyboard Shortcut: tab
Behavior: Run JavaScript
Label as: Result Picker
 - Paste the following JavaScript into the JavaScript code to run: 
 
 - document.selectedResultId=0
 function selectResult(newId){
 els = document.querySelectorAll("div.r h3")
 if(newId < 0 || newId >= els.length)
 return //Could modify for page nav...?
 rp = document.getElementById("result-pointer")
 if(rp != null){
 rp.remove()
 }
 document.selectedResultId=newId
 el = els[newId]
 lnk = el.firstElementChild
 el.innerHTML = "<div id="result-pointer" style="position:absolute;left:-15px;">></div>" + el.innerHTML
 lnk.focus()
 }
 document.onkeyup=function(event){
 if(event.keyCode==38)
 selectResult(document.selectedResultId-1)
 if(event.keyCode==40)
 selectResult(document.selectedResultId+1)
 if(event.keyCode==13){
 var el = document.querySelectorAll("div.r h3")[document.selectedResultId]
 var lnk = el.parentElement
 var url = lnk.href
 if(event.ctrlKey){
 var win = window.open(url,"_blank")
 win.blur()
 window.open().close()
 }
 else{
 document.location = url
 }
 }
 }
 selectResult(0)
 
 
- Configure the Activation Settings: 
Active while in form fields (Checked)
Websites (Only specific sites)
URLS (one per line): *.google.*
This is what the Options page should look like

- Click Save and then close your browser.
Instructions:
- When you restart you should see a little blue ">" appear by search 
 results when you hit tab.
- The up/down arrow keys make it cycle through the results. 
- Hitting "Enter" will navigate to the highlighted result. 
- Hitting "Ctrl+Enter" to open the result in a new tab. (note: on a Mac this is the actual - controlkey, not- command)
Happy Searching!
 
 
 1
 
 
 
 
 +100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
 – Brad Cupit
 Jul 31 '17 at 14:57
 
 
 
 
 
 
 
 
 
 @BradCupit did you get it to work?
 – Robino
 Jul 31 '17 at 15:20
 
 
 
 
 
 1
 
 
 
 
 your steps above? yes, they definitely work! Thank you so much!!
 – Brad Cupit
 Jul 31 '17 at 15:47
 
 
 
 
 
 
 
 1
 
 
 
 
 On a Mac I was able to get Cmd+Enter to open tabs in the background. Change- document.onkeyupto- document.onkeydown, then change- if(event.ctrlKey){to- if(event.metaKey){and remove the calls to- win.blur()and- window.open().close()
 – Brad Cupit
 Jul 31 '17 at 21:49
 
 
 
 
 
 1
 
 
 
 
 @BradCupit - updated to match new Google HTML.
 – Robino
 Nov 27 at 22:03
 
 
 
|
show 1 more comment
up vote
2
down vote
Google have removed this feature, so you can't just turn it out like you used to be able to. The way you used to be able to do this was through:
Google Search > Settings > Search Settings > Google Instant Prediction > On
I was so sad to see this feature go that I wrote a hack to re-engineer it last night. So far it only works with Google Chrome, but can be adapted to work with all the others:
- Install Chrome extension ShortKeys.
- Click on the ShortKeys menu and select "Options"
  
 
- Click on "Add" and fill in the following fields:
Keyboard Shortcut: tab
Behavior: Run JavaScript
Label as: Result Picker
 - Paste the following JavaScript into the JavaScript code to run: 
 
 - document.selectedResultId=0
 function selectResult(newId){
 els = document.querySelectorAll("div.r h3")
 if(newId < 0 || newId >= els.length)
 return //Could modify for page nav...?
 rp = document.getElementById("result-pointer")
 if(rp != null){
 rp.remove()
 }
 document.selectedResultId=newId
 el = els[newId]
 lnk = el.firstElementChild
 el.innerHTML = "<div id="result-pointer" style="position:absolute;left:-15px;">></div>" + el.innerHTML
 lnk.focus()
 }
 document.onkeyup=function(event){
 if(event.keyCode==38)
 selectResult(document.selectedResultId-1)
 if(event.keyCode==40)
 selectResult(document.selectedResultId+1)
 if(event.keyCode==13){
 var el = document.querySelectorAll("div.r h3")[document.selectedResultId]
 var lnk = el.parentElement
 var url = lnk.href
 if(event.ctrlKey){
 var win = window.open(url,"_blank")
 win.blur()
 window.open().close()
 }
 else{
 document.location = url
 }
 }
 }
 selectResult(0)
 
 
- Configure the Activation Settings: 
Active while in form fields (Checked)
Websites (Only specific sites)
URLS (one per line): *.google.*
This is what the Options page should look like

- Click Save and then close your browser.
Instructions:
- When you restart you should see a little blue ">" appear by search 
 results when you hit tab.
- The up/down arrow keys make it cycle through the results. 
- Hitting "Enter" will navigate to the highlighted result. 
- Hitting "Ctrl+Enter" to open the result in a new tab. (note: on a Mac this is the actual - controlkey, not- command)
Happy Searching!
 
 
 1
 
 
 
 
 +100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
 – Brad Cupit
 Jul 31 '17 at 14:57
 
 
 
 
 
 
 
 
 
 @BradCupit did you get it to work?
 – Robino
 Jul 31 '17 at 15:20
 
 
 
 
 
 1
 
 
 
 
 your steps above? yes, they definitely work! Thank you so much!!
 – Brad Cupit
 Jul 31 '17 at 15:47
 
 
 
 
 
 
 
 1
 
 
 
 
 On a Mac I was able to get Cmd+Enter to open tabs in the background. Change- document.onkeyupto- document.onkeydown, then change- if(event.ctrlKey){to- if(event.metaKey){and remove the calls to- win.blur()and- window.open().close()
 – Brad Cupit
 Jul 31 '17 at 21:49
 
 
 
 
 
 1
 
 
 
 
 @BradCupit - updated to match new Google HTML.
 – Robino
 Nov 27 at 22:03
 
 
 
|
show 1 more comment
up vote
2
down vote
up vote
2
down vote
Google have removed this feature, so you can't just turn it out like you used to be able to. The way you used to be able to do this was through:
Google Search > Settings > Search Settings > Google Instant Prediction > On
I was so sad to see this feature go that I wrote a hack to re-engineer it last night. So far it only works with Google Chrome, but can be adapted to work with all the others:
- Install Chrome extension ShortKeys.
- Click on the ShortKeys menu and select "Options"
  
 
- Click on "Add" and fill in the following fields:
Keyboard Shortcut: tab
Behavior: Run JavaScript
Label as: Result Picker
 - Paste the following JavaScript into the JavaScript code to run: 
 
 - document.selectedResultId=0
 function selectResult(newId){
 els = document.querySelectorAll("div.r h3")
 if(newId < 0 || newId >= els.length)
 return //Could modify for page nav...?
 rp = document.getElementById("result-pointer")
 if(rp != null){
 rp.remove()
 }
 document.selectedResultId=newId
 el = els[newId]
 lnk = el.firstElementChild
 el.innerHTML = "<div id="result-pointer" style="position:absolute;left:-15px;">></div>" + el.innerHTML
 lnk.focus()
 }
 document.onkeyup=function(event){
 if(event.keyCode==38)
 selectResult(document.selectedResultId-1)
 if(event.keyCode==40)
 selectResult(document.selectedResultId+1)
 if(event.keyCode==13){
 var el = document.querySelectorAll("div.r h3")[document.selectedResultId]
 var lnk = el.parentElement
 var url = lnk.href
 if(event.ctrlKey){
 var win = window.open(url,"_blank")
 win.blur()
 window.open().close()
 }
 else{
 document.location = url
 }
 }
 }
 selectResult(0)
 
 
- Configure the Activation Settings: 
Active while in form fields (Checked)
Websites (Only specific sites)
URLS (one per line): *.google.*
This is what the Options page should look like

- Click Save and then close your browser.
Instructions:
- When you restart you should see a little blue ">" appear by search 
 results when you hit tab.
- The up/down arrow keys make it cycle through the results. 
- Hitting "Enter" will navigate to the highlighted result. 
- Hitting "Ctrl+Enter" to open the result in a new tab. (note: on a Mac this is the actual - controlkey, not- command)
Happy Searching!
Google have removed this feature, so you can't just turn it out like you used to be able to. The way you used to be able to do this was through:
Google Search > Settings > Search Settings > Google Instant Prediction > On
I was so sad to see this feature go that I wrote a hack to re-engineer it last night. So far it only works with Google Chrome, but can be adapted to work with all the others:
- Install Chrome extension ShortKeys.
- Click on the ShortKeys menu and select "Options"
  
 
- Click on "Add" and fill in the following fields:
Keyboard Shortcut: tab
Behavior: Run JavaScript
Label as: Result Picker
 - Paste the following JavaScript into the JavaScript code to run: 
 
 - document.selectedResultId=0
 function selectResult(newId){
 els = document.querySelectorAll("div.r h3")
 if(newId < 0 || newId >= els.length)
 return //Could modify for page nav...?
 rp = document.getElementById("result-pointer")
 if(rp != null){
 rp.remove()
 }
 document.selectedResultId=newId
 el = els[newId]
 lnk = el.firstElementChild
 el.innerHTML = "<div id="result-pointer" style="position:absolute;left:-15px;">></div>" + el.innerHTML
 lnk.focus()
 }
 document.onkeyup=function(event){
 if(event.keyCode==38)
 selectResult(document.selectedResultId-1)
 if(event.keyCode==40)
 selectResult(document.selectedResultId+1)
 if(event.keyCode==13){
 var el = document.querySelectorAll("div.r h3")[document.selectedResultId]
 var lnk = el.parentElement
 var url = lnk.href
 if(event.ctrlKey){
 var win = window.open(url,"_blank")
 win.blur()
 window.open().close()
 }
 else{
 document.location = url
 }
 }
 }
 selectResult(0)
 
 
- Configure the Activation Settings: 
Active while in form fields (Checked)
Websites (Only specific sites)
URLS (one per line): *.google.*
This is what the Options page should look like

- Click Save and then close your browser.
Instructions:
- When you restart you should see a little blue ">" appear by search 
 results when you hit tab.
- The up/down arrow keys make it cycle through the results. 
- Hitting "Enter" will navigate to the highlighted result. 
- Hitting "Ctrl+Enter" to open the result in a new tab. (note: on a Mac this is the actual - controlkey, not- command)
Happy Searching!
edited Nov 27 at 22:02
answered Jul 27 '17 at 14:00
Robino
698614
698614
 
 
 1
 
 
 
 
 +100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
 – Brad Cupit
 Jul 31 '17 at 14:57
 
 
 
 
 
 
 
 
 
 @BradCupit did you get it to work?
 – Robino
 Jul 31 '17 at 15:20
 
 
 
 
 
 1
 
 
 
 
 your steps above? yes, they definitely work! Thank you so much!!
 – Brad Cupit
 Jul 31 '17 at 15:47
 
 
 
 
 
 
 
 1
 
 
 
 
 On a Mac I was able to get Cmd+Enter to open tabs in the background. Change- document.onkeyupto- document.onkeydown, then change- if(event.ctrlKey){to- if(event.metaKey){and remove the calls to- win.blur()and- window.open().close()
 – Brad Cupit
 Jul 31 '17 at 21:49
 
 
 
 
 
 1
 
 
 
 
 @BradCupit - updated to match new Google HTML.
 – Robino
 Nov 27 at 22:03
 
 
 
|
show 1 more comment
 
 
 1
 
 
 
 
 +100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
 – Brad Cupit
 Jul 31 '17 at 14:57
 
 
 
 
 
 
 
 
 
 @BradCupit did you get it to work?
 – Robino
 Jul 31 '17 at 15:20
 
 
 
 
 
 1
 
 
 
 
 your steps above? yes, they definitely work! Thank you so much!!
 – Brad Cupit
 Jul 31 '17 at 15:47
 
 
 
 
 
 
 
 1
 
 
 
 
 On a Mac I was able to get Cmd+Enter to open tabs in the background. Change- document.onkeyupto- document.onkeydown, then change- if(event.ctrlKey){to- if(event.metaKey){and remove the calls to- win.blur()and- window.open().close()
 – Brad Cupit
 Jul 31 '17 at 21:49
 
 
 
 
 
 1
 
 
 
 
 @BradCupit - updated to match new Google HTML.
 – Robino
 Nov 27 at 22:03
 
 
 
1
1
+100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
– Brad Cupit
Jul 31 '17 at 14:57
+100 Thank you so much for implementing this! Now that Google Instant is gone (as of July 2017) we had no keyboard shortcuts, but you restored them!!
– Brad Cupit
Jul 31 '17 at 14:57
@BradCupit did you get it to work?
– Robino
Jul 31 '17 at 15:20
@BradCupit did you get it to work?
– Robino
Jul 31 '17 at 15:20
1
1
your steps above? yes, they definitely work! Thank you so much!!
– Brad Cupit
Jul 31 '17 at 15:47
your steps above? yes, they definitely work! Thank you so much!!
– Brad Cupit
Jul 31 '17 at 15:47
1
1
On a Mac I was able to get Cmd+Enter to open tabs in the background. Change
document.onkeyup to document.onkeydown, then change if(event.ctrlKey){ to if(event.metaKey){ and remove the calls to win.blur() and window.open().close()– Brad Cupit
Jul 31 '17 at 21:49
On a Mac I was able to get Cmd+Enter to open tabs in the background. Change
document.onkeyup to document.onkeydown, then change if(event.ctrlKey){ to if(event.metaKey){ and remove the calls to win.blur() and window.open().close()– Brad Cupit
Jul 31 '17 at 21:49
1
1
@BradCupit - updated to match new Google HTML.
– Robino
Nov 27 at 22:03
@BradCupit - updated to match new Google HTML.
– Robino
Nov 27 at 22:03
|
show 1 more comment
up vote
1
down vote
Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons. 
 
 
 
 
 
 
 It does not work for me. Is it a glitch?
 – cerebrou
 Jul 22 '16 at 1:33
 
 
 
 
 
 
 
 
 
 That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
 – Jonatan Öström
 Jul 22 '16 at 9:02
 
 
 
 
 
 
 
 
 
 
 
 The answer below also works for me
 – Jonatan Öström
 Jul 22 '16 at 9:05
 
 
 
 
 
 3
 
 
 
 
 This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
 – idbrii
 Jul 31 '16 at 18:07
 
 
 
 
 
 
 
 
 
 unfortunately Google has disabled Google Instant as of July 2017
 – Brad Cupit
 Aug 1 '17 at 12:43
 
 
 
add a comment |
up vote
1
down vote
Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons. 
 
 
 
 
 
 
 It does not work for me. Is it a glitch?
 – cerebrou
 Jul 22 '16 at 1:33
 
 
 
 
 
 
 
 
 
 That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
 – Jonatan Öström
 Jul 22 '16 at 9:02
 
 
 
 
 
 
 
 
 
 
 
 The answer below also works for me
 – Jonatan Öström
 Jul 22 '16 at 9:05
 
 
 
 
 
 3
 
 
 
 
 This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
 – idbrii
 Jul 31 '16 at 18:07
 
 
 
 
 
 
 
 
 
 unfortunately Google has disabled Google Instant as of July 2017
 – Brad Cupit
 Aug 1 '17 at 12:43
 
 
 
add a comment |
up vote
1
down vote
up vote
1
down vote
Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons. 
Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons. 
answered Jul 21 '16 at 15:37


Jonatan Öström
15518
15518
 
 
 
 
 
 
 It does not work for me. Is it a glitch?
 – cerebrou
 Jul 22 '16 at 1:33
 
 
 
 
 
 
 
 
 
 That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
 – Jonatan Öström
 Jul 22 '16 at 9:02
 
 
 
 
 
 
 
 
 
 
 
 The answer below also works for me
 – Jonatan Öström
 Jul 22 '16 at 9:05
 
 
 
 
 
 3
 
 
 
 
 This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
 – idbrii
 Jul 31 '16 at 18:07
 
 
 
 
 
 
 
 
 
 unfortunately Google has disabled Google Instant as of July 2017
 – Brad Cupit
 Aug 1 '17 at 12:43
 
 
 
add a comment |
 
 
 
 
 
 
 It does not work for me. Is it a glitch?
 – cerebrou
 Jul 22 '16 at 1:33
 
 
 
 
 
 
 
 
 
 That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
 – Jonatan Öström
 Jul 22 '16 at 9:02
 
 
 
 
 
 
 
 
 
 
 
 The answer below also works for me
 – Jonatan Öström
 Jul 22 '16 at 9:05
 
 
 
 
 
 3
 
 
 
 
 This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
 – idbrii
 Jul 31 '16 at 18:07
 
 
 
 
 
 
 
 
 
 unfortunately Google has disabled Google Instant as of July 2017
 – Brad Cupit
 Aug 1 '17 at 12:43
 
 
 
It does not work for me. Is it a glitch?
– cerebrou
Jul 22 '16 at 1:33
It does not work for me. Is it a glitch?
– cerebrou
Jul 22 '16 at 1:33
That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
– Jonatan Öström
Jul 22 '16 at 9:02
That's strange, because it definitely works for me. I'm in ubuntu, maybe there ar differences between OSes
– Jonatan Öström
Jul 22 '16 at 9:02
The answer below also works for me
– Jonatan Öström
Jul 22 '16 at 9:05
The answer below also works for me
– Jonatan Öström
Jul 22 '16 at 9:05
3
3
This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
– idbrii
Jul 31 '16 at 18:07
This only works in Chrome if you have Google Instant enabled in your browser settings. I don't know why.
– idbrii
Jul 31 '16 at 18:07
unfortunately Google has disabled Google Instant as of July 2017
– Brad Cupit
Aug 1 '17 at 12:43
unfortunately Google has disabled Google Instant as of July 2017
– Brad Cupit
Aug 1 '17 at 12:43
add a comment |
up vote
0
down vote
Just use your arrow keys ←↕→ and then press Enter when you are at the desired result.
add a comment |
up vote
0
down vote
Just use your arrow keys ←↕→ and then press Enter when you are at the desired result.
add a comment |
up vote
0
down vote
up vote
0
down vote
Just use your arrow keys ←↕→ and then press Enter when you are at the desired result.
Just use your arrow keys ←↕→ and then press Enter when you are at the desired result.
answered Jul 21 '16 at 15:43
jsejcksn
2,30521827
2,30521827
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1103550%2fgoogle-search-go-to-results-keyboard-shortcut%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See answer here: superuser.com/a/1237754/407543
– infokiller
Aug 4 '17 at 18:12