Amazon's Website Search Bar











up vote
4
down vote

favorite












Before



enter image description here



After



enter image description here



Did you notice the change in the results being shown in the drop-down?


In the first image, only last words are highlighted in bold but in case of the second image the moment user keys in spacebar once again it turns all the results into bold. Why is it so?










share|improve this question


























    up vote
    4
    down vote

    favorite












    Before



    enter image description here



    After



    enter image description here



    Did you notice the change in the results being shown in the drop-down?


    In the first image, only last words are highlighted in bold but in case of the second image the moment user keys in spacebar once again it turns all the results into bold. Why is it so?










    share|improve this question
























      up vote
      4
      down vote

      favorite









      up vote
      4
      down vote

      favorite











      Before



      enter image description here



      After



      enter image description here



      Did you notice the change in the results being shown in the drop-down?


      In the first image, only last words are highlighted in bold but in case of the second image the moment user keys in spacebar once again it turns all the results into bold. Why is it so?










      share|improve this question













      Before



      enter image description here



      After



      enter image description here



      Did you notice the change in the results being shown in the drop-down?


      In the first image, only last words are highlighted in bold but in case of the second image the moment user keys in spacebar once again it turns all the results into bold. Why is it so?







      usability user-expectation search drop-down-list






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 28 at 6:54









      NB4

      1,396425




      1,396425






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          6
          down vote













          When you hit the spacebar once again, Amazon treats it as an incorrect word and highlight it.



          Same happens with Google - when you enter an incorrect word, it highlights it.



          enter image description here



          Entering an incorrect word:



          enter image description here






          share|improve this answer

















          • 2




            But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
            – NB4
            Nov 28 at 7:17






          • 2




            Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
            – Gaurav Neema
            Nov 28 at 7:25


















          up vote
          5
          down vote













          It is the way the autocomplete is designed.



          When the user starts typing a word the application goes through the previous/popular searches and displays the possible continuation in block letters on the list.



          And when the user types an extra space after a word, there are no such previous/popular searches that exist, so the whole sentence changes to block letters as the text in input field does not match with the list of previous/popular searches.



          When they continue to type any other word after two spaces the autocomplete will suggest the existing searches in block letters with only one space.



          Case 1



          mobile - Available in previous searches. So, only display continuation in block letters



          mobile phone, mobile charger, etc..



          Case 2



          mobile p - Available in previous searches. So, only display continuation in block letters



          mobile phone, mobile phone case, etc..



          Case 3



          mobile * (mobile double space) - Not available. So, display all popular searcher in block letters



          mobile phone, mobile case, mobile charger, etc..



          Case 4



          mobile p (mobile double space p) - Not available. So, display all popular searcher in block letters



          mobile phone, mobile phone charger, mobile phone case, etc..






          share|improve this answer






























            up vote
            0
            down vote













            It is detected as a "wrong word" , probably somewhere along development a searched word with an extra spacebar is seen as a whole word that does not match with the right word that was "mobile" as "mobile" is not the same thing with "mobile " .






            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "102"
              };
              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: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              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
              },
              noCode: true, onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f122407%2famazons-website-search-bar%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
              6
              down vote













              When you hit the spacebar once again, Amazon treats it as an incorrect word and highlight it.



              Same happens with Google - when you enter an incorrect word, it highlights it.



              enter image description here



              Entering an incorrect word:



              enter image description here






              share|improve this answer

















              • 2




                But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
                – NB4
                Nov 28 at 7:17






              • 2




                Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
                – Gaurav Neema
                Nov 28 at 7:25















              up vote
              6
              down vote













              When you hit the spacebar once again, Amazon treats it as an incorrect word and highlight it.



              Same happens with Google - when you enter an incorrect word, it highlights it.



              enter image description here



              Entering an incorrect word:



              enter image description here






              share|improve this answer

















              • 2




                But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
                – NB4
                Nov 28 at 7:17






              • 2




                Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
                – Gaurav Neema
                Nov 28 at 7:25













              up vote
              6
              down vote










              up vote
              6
              down vote









              When you hit the spacebar once again, Amazon treats it as an incorrect word and highlight it.



              Same happens with Google - when you enter an incorrect word, it highlights it.



              enter image description here



              Entering an incorrect word:



              enter image description here






              share|improve this answer












              When you hit the spacebar once again, Amazon treats it as an incorrect word and highlight it.



              Same happens with Google - when you enter an incorrect word, it highlights it.



              enter image description here



              Entering an incorrect word:



              enter image description here







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 28 at 7:03









              Gaurav Neema

              613




              613








              • 2




                But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
                – NB4
                Nov 28 at 7:17






              • 2




                Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
                – Gaurav Neema
                Nov 28 at 7:25














              • 2




                But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
                – NB4
                Nov 28 at 7:17






              • 2




                Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
                – Gaurav Neema
                Nov 28 at 7:25








              2




              2




              But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
              – NB4
              Nov 28 at 7:17




              But in the above the example the text entered is right. There's an extra space given by the user. Why does it highlight the entire text?
              – NB4
              Nov 28 at 7:17




              2




              2




              Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
              – Gaurav Neema
              Nov 28 at 7:25




              Seems like adding an extra space after a word makes it incorrect in Amazon search. They may not have handled this case. I don't if it's a bug or feature. Depends on your interpretation.
              – Gaurav Neema
              Nov 28 at 7:25












              up vote
              5
              down vote













              It is the way the autocomplete is designed.



              When the user starts typing a word the application goes through the previous/popular searches and displays the possible continuation in block letters on the list.



              And when the user types an extra space after a word, there are no such previous/popular searches that exist, so the whole sentence changes to block letters as the text in input field does not match with the list of previous/popular searches.



              When they continue to type any other word after two spaces the autocomplete will suggest the existing searches in block letters with only one space.



              Case 1



              mobile - Available in previous searches. So, only display continuation in block letters



              mobile phone, mobile charger, etc..



              Case 2



              mobile p - Available in previous searches. So, only display continuation in block letters



              mobile phone, mobile phone case, etc..



              Case 3



              mobile * (mobile double space) - Not available. So, display all popular searcher in block letters



              mobile phone, mobile case, mobile charger, etc..



              Case 4



              mobile p (mobile double space p) - Not available. So, display all popular searcher in block letters



              mobile phone, mobile phone charger, mobile phone case, etc..






              share|improve this answer



























                up vote
                5
                down vote













                It is the way the autocomplete is designed.



                When the user starts typing a word the application goes through the previous/popular searches and displays the possible continuation in block letters on the list.



                And when the user types an extra space after a word, there are no such previous/popular searches that exist, so the whole sentence changes to block letters as the text in input field does not match with the list of previous/popular searches.



                When they continue to type any other word after two spaces the autocomplete will suggest the existing searches in block letters with only one space.



                Case 1



                mobile - Available in previous searches. So, only display continuation in block letters



                mobile phone, mobile charger, etc..



                Case 2



                mobile p - Available in previous searches. So, only display continuation in block letters



                mobile phone, mobile phone case, etc..



                Case 3



                mobile * (mobile double space) - Not available. So, display all popular searcher in block letters



                mobile phone, mobile case, mobile charger, etc..



                Case 4



                mobile p (mobile double space p) - Not available. So, display all popular searcher in block letters



                mobile phone, mobile phone charger, mobile phone case, etc..






                share|improve this answer

























                  up vote
                  5
                  down vote










                  up vote
                  5
                  down vote









                  It is the way the autocomplete is designed.



                  When the user starts typing a word the application goes through the previous/popular searches and displays the possible continuation in block letters on the list.



                  And when the user types an extra space after a word, there are no such previous/popular searches that exist, so the whole sentence changes to block letters as the text in input field does not match with the list of previous/popular searches.



                  When they continue to type any other word after two spaces the autocomplete will suggest the existing searches in block letters with only one space.



                  Case 1



                  mobile - Available in previous searches. So, only display continuation in block letters



                  mobile phone, mobile charger, etc..



                  Case 2



                  mobile p - Available in previous searches. So, only display continuation in block letters



                  mobile phone, mobile phone case, etc..



                  Case 3



                  mobile * (mobile double space) - Not available. So, display all popular searcher in block letters



                  mobile phone, mobile case, mobile charger, etc..



                  Case 4



                  mobile p (mobile double space p) - Not available. So, display all popular searcher in block letters



                  mobile phone, mobile phone charger, mobile phone case, etc..






                  share|improve this answer














                  It is the way the autocomplete is designed.



                  When the user starts typing a word the application goes through the previous/popular searches and displays the possible continuation in block letters on the list.



                  And when the user types an extra space after a word, there are no such previous/popular searches that exist, so the whole sentence changes to block letters as the text in input field does not match with the list of previous/popular searches.



                  When they continue to type any other word after two spaces the autocomplete will suggest the existing searches in block letters with only one space.



                  Case 1



                  mobile - Available in previous searches. So, only display continuation in block letters



                  mobile phone, mobile charger, etc..



                  Case 2



                  mobile p - Available in previous searches. So, only display continuation in block letters



                  mobile phone, mobile phone case, etc..



                  Case 3



                  mobile * (mobile double space) - Not available. So, display all popular searcher in block letters



                  mobile phone, mobile case, mobile charger, etc..



                  Case 4



                  mobile p (mobile double space p) - Not available. So, display all popular searcher in block letters



                  mobile phone, mobile phone charger, mobile phone case, etc..







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 28 at 12:05

























                  answered Nov 28 at 11:11









                  Bharath Selvaraj

                  1,2831721




                  1,2831721






















                      up vote
                      0
                      down vote













                      It is detected as a "wrong word" , probably somewhere along development a searched word with an extra spacebar is seen as a whole word that does not match with the right word that was "mobile" as "mobile" is not the same thing with "mobile " .






                      share|improve this answer

























                        up vote
                        0
                        down vote













                        It is detected as a "wrong word" , probably somewhere along development a searched word with an extra spacebar is seen as a whole word that does not match with the right word that was "mobile" as "mobile" is not the same thing with "mobile " .






                        share|improve this answer























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          It is detected as a "wrong word" , probably somewhere along development a searched word with an extra spacebar is seen as a whole word that does not match with the right word that was "mobile" as "mobile" is not the same thing with "mobile " .






                          share|improve this answer












                          It is detected as a "wrong word" , probably somewhere along development a searched word with an extra spacebar is seen as a whole word that does not match with the right word that was "mobile" as "mobile" is not the same thing with "mobile " .







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 28 at 11:41









                          Zasul

                          43511




                          43511






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to User Experience Stack Exchange!


                              • 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%2fux.stackexchange.com%2fquestions%2f122407%2famazons-website-search-bar%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

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...