Google search “go to results” keyboard shortcut











up vote
5
down vote

favorite
1












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.










share|improve this question
























  • See answer here: superuser.com/a/1237754/407543
    – infokiller
    Aug 4 '17 at 18:12

















up vote
5
down vote

favorite
1












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.










share|improve this question
























  • See answer here: superuser.com/a/1237754/407543
    – infokiller
    Aug 4 '17 at 18:12















up vote
5
down vote

favorite
1









up vote
5
down vote

favorite
1






1





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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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




















  • 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












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:




  1. Install Chrome extension ShortKeys.

  2. Click on the ShortKeys menu and select "Options"
    enter image description here

  3. Click on "Add" and fill in the following fields:


Keyboard Shortcut: tab



Behavior: Run JavaScript



Label as: Result Picker





  1. 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;">&gt;</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)


  2. 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



ShortKeys Options Page




  1. 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 control key, not command)



Happy Searching!






share|improve this answer



















  • 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.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




    @BradCupit - updated to match new Google HTML.
    – Robino
    Nov 27 at 22:03


















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.






share|improve this answer





















  • 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


















up vote
0
down vote













Just use your arrow keys and then press Enter when you are at the desired result.






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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:




    1. Install Chrome extension ShortKeys.

    2. Click on the ShortKeys menu and select "Options"
      enter image description here

    3. Click on "Add" and fill in the following fields:


    Keyboard Shortcut: tab



    Behavior: Run JavaScript



    Label as: Result Picker





    1. 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;">&gt;</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)


    2. 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



    ShortKeys Options Page




    1. 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 control key, not command)



    Happy Searching!






    share|improve this answer



















    • 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.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




      @BradCupit - updated to match new Google HTML.
      – Robino
      Nov 27 at 22:03















    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:




    1. Install Chrome extension ShortKeys.

    2. Click on the ShortKeys menu and select "Options"
      enter image description here

    3. Click on "Add" and fill in the following fields:


    Keyboard Shortcut: tab



    Behavior: Run JavaScript



    Label as: Result Picker





    1. 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;">&gt;</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)


    2. 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



    ShortKeys Options Page




    1. 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 control key, not command)



    Happy Searching!






    share|improve this answer



















    • 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.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




      @BradCupit - updated to match new Google HTML.
      – Robino
      Nov 27 at 22:03













    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:




    1. Install Chrome extension ShortKeys.

    2. Click on the ShortKeys menu and select "Options"
      enter image description here

    3. Click on "Add" and fill in the following fields:


    Keyboard Shortcut: tab



    Behavior: Run JavaScript



    Label as: Result Picker





    1. 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;">&gt;</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)


    2. 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



    ShortKeys Options Page




    1. 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 control key, not command)



    Happy Searching!






    share|improve this answer














    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:




    1. Install Chrome extension ShortKeys.

    2. Click on the ShortKeys menu and select "Options"
      enter image description here

    3. Click on "Add" and fill in the following fields:


    Keyboard Shortcut: tab



    Behavior: Run JavaScript



    Label as: Result Picker





    1. 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;">&gt;</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)


    2. 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



    ShortKeys Options Page




    1. 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 control key, not command)



    Happy Searching!







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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.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




      @BradCupit - updated to match new Google HTML.
      – Robino
      Nov 27 at 22:03














    • 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.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




      @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












    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.






    share|improve this answer





















    • 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















    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.






    share|improve this answer





















    • 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













    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.






    share|improve this answer












    Yes you press TAB button once to get to the first result. And then you can select with the down/up buttons.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    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


















    • 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










    up vote
    0
    down vote













    Just use your arrow keys and then press Enter when you are at the desired result.






    share|improve this answer

























      up vote
      0
      down vote













      Just use your arrow keys and then press Enter when you are at the desired result.






      share|improve this answer























        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.






        share|improve this answer












        Just use your arrow keys and then press Enter when you are at the desired result.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 21 '16 at 15:43









        jsejcksn

        2,30521827




        2,30521827






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕