Make an HTML textarea Voice Over readable












0















<div>
<textarea placeholder="Type a message...."> </textarea>
</div>


How to make this text area readable by the voice over software?










share|improve this question



























    0















    <div>
    <textarea placeholder="Type a message...."> </textarea>
    </div>


    How to make this text area readable by the voice over software?










    share|improve this question

























      0












      0








      0








      <div>
      <textarea placeholder="Type a message...."> </textarea>
      </div>


      How to make this text area readable by the voice over software?










      share|improve this question














      <div>
      <textarea placeholder="Type a message...."> </textarea>
      </div>


      How to make this text area readable by the voice over software?







      html css voiceover screen-readers






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 7:13









      Chinmaya Ranjan BiswalChinmaya Ranjan Biswal

      298




      298
























          2 Answers
          2






          active

          oldest

          votes


















          2














          What part are you trying to make readable?




          • the contents of the textarea?

          • the contents as you're typing?

          • a label for the textarea?

          • all of the above?


          When focus moves to a textarea that already has contents (from typing previously), the text should be selected and the entire text should already be read by voiceover. If you start typing, the previously (automatically) selected text will be cleared and whatever you type will replace it.



          As you type in the field, the characters or words (depending on your settings) will be spoken as you type it, at least on OSX. On iOS, the onscreen keyboard will read every letter as you type (unless you have a bluetooth keyboard for iOS, then it will be a similar experience to OSX, namely that characters or words will be announced as you type).



          If you want a label, just use the <label> element. The placeholder attribute on the <textarea> may or may not be read by a screen reader and the spec for placeholder says to not use it as a replacement for a label. (See the warning on the spec page.)



          So you'd want something like:



          <label for="mytext">here's my label</label>
          <textarea id="mytext"></textarea>


          Make sure you use the for attribute of the <label> to associate the label with the textarea.



          Note: The "sr-only" class from bootstrap (see What is sr-only in Bootstrap 3?) is for visually hiding text that can still be read by screen readers. Just adding a <span> with hidden text will not associate that text with the textarea element.






          share|improve this answer































            1














            In bootstrap, we have a class called .sr-only for screen reader.



            HTML



            <div>
            <span class="sr-only">Readable text</span>
            <textarea placeholder="Type a message...."> </textarea>
            </div>


            CSS



            .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
            }





            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              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',
              autoActivateHeartbeat: false,
              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%2fstackoverflow.com%2fquestions%2f53406941%2fmake-an-html-textarea-voice-over-readable%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              What part are you trying to make readable?




              • the contents of the textarea?

              • the contents as you're typing?

              • a label for the textarea?

              • all of the above?


              When focus moves to a textarea that already has contents (from typing previously), the text should be selected and the entire text should already be read by voiceover. If you start typing, the previously (automatically) selected text will be cleared and whatever you type will replace it.



              As you type in the field, the characters or words (depending on your settings) will be spoken as you type it, at least on OSX. On iOS, the onscreen keyboard will read every letter as you type (unless you have a bluetooth keyboard for iOS, then it will be a similar experience to OSX, namely that characters or words will be announced as you type).



              If you want a label, just use the <label> element. The placeholder attribute on the <textarea> may or may not be read by a screen reader and the spec for placeholder says to not use it as a replacement for a label. (See the warning on the spec page.)



              So you'd want something like:



              <label for="mytext">here's my label</label>
              <textarea id="mytext"></textarea>


              Make sure you use the for attribute of the <label> to associate the label with the textarea.



              Note: The "sr-only" class from bootstrap (see What is sr-only in Bootstrap 3?) is for visually hiding text that can still be read by screen readers. Just adding a <span> with hidden text will not associate that text with the textarea element.






              share|improve this answer




























                2














                What part are you trying to make readable?




                • the contents of the textarea?

                • the contents as you're typing?

                • a label for the textarea?

                • all of the above?


                When focus moves to a textarea that already has contents (from typing previously), the text should be selected and the entire text should already be read by voiceover. If you start typing, the previously (automatically) selected text will be cleared and whatever you type will replace it.



                As you type in the field, the characters or words (depending on your settings) will be spoken as you type it, at least on OSX. On iOS, the onscreen keyboard will read every letter as you type (unless you have a bluetooth keyboard for iOS, then it will be a similar experience to OSX, namely that characters or words will be announced as you type).



                If you want a label, just use the <label> element. The placeholder attribute on the <textarea> may or may not be read by a screen reader and the spec for placeholder says to not use it as a replacement for a label. (See the warning on the spec page.)



                So you'd want something like:



                <label for="mytext">here's my label</label>
                <textarea id="mytext"></textarea>


                Make sure you use the for attribute of the <label> to associate the label with the textarea.



                Note: The "sr-only" class from bootstrap (see What is sr-only in Bootstrap 3?) is for visually hiding text that can still be read by screen readers. Just adding a <span> with hidden text will not associate that text with the textarea element.






                share|improve this answer


























                  2












                  2








                  2







                  What part are you trying to make readable?




                  • the contents of the textarea?

                  • the contents as you're typing?

                  • a label for the textarea?

                  • all of the above?


                  When focus moves to a textarea that already has contents (from typing previously), the text should be selected and the entire text should already be read by voiceover. If you start typing, the previously (automatically) selected text will be cleared and whatever you type will replace it.



                  As you type in the field, the characters or words (depending on your settings) will be spoken as you type it, at least on OSX. On iOS, the onscreen keyboard will read every letter as you type (unless you have a bluetooth keyboard for iOS, then it will be a similar experience to OSX, namely that characters or words will be announced as you type).



                  If you want a label, just use the <label> element. The placeholder attribute on the <textarea> may or may not be read by a screen reader and the spec for placeholder says to not use it as a replacement for a label. (See the warning on the spec page.)



                  So you'd want something like:



                  <label for="mytext">here's my label</label>
                  <textarea id="mytext"></textarea>


                  Make sure you use the for attribute of the <label> to associate the label with the textarea.



                  Note: The "sr-only" class from bootstrap (see What is sr-only in Bootstrap 3?) is for visually hiding text that can still be read by screen readers. Just adding a <span> with hidden text will not associate that text with the textarea element.






                  share|improve this answer













                  What part are you trying to make readable?




                  • the contents of the textarea?

                  • the contents as you're typing?

                  • a label for the textarea?

                  • all of the above?


                  When focus moves to a textarea that already has contents (from typing previously), the text should be selected and the entire text should already be read by voiceover. If you start typing, the previously (automatically) selected text will be cleared and whatever you type will replace it.



                  As you type in the field, the characters or words (depending on your settings) will be spoken as you type it, at least on OSX. On iOS, the onscreen keyboard will read every letter as you type (unless you have a bluetooth keyboard for iOS, then it will be a similar experience to OSX, namely that characters or words will be announced as you type).



                  If you want a label, just use the <label> element. The placeholder attribute on the <textarea> may or may not be read by a screen reader and the spec for placeholder says to not use it as a replacement for a label. (See the warning on the spec page.)



                  So you'd want something like:



                  <label for="mytext">here's my label</label>
                  <textarea id="mytext"></textarea>


                  Make sure you use the for attribute of the <label> to associate the label with the textarea.



                  Note: The "sr-only" class from bootstrap (see What is sr-only in Bootstrap 3?) is for visually hiding text that can still be read by screen readers. Just adding a <span> with hidden text will not associate that text with the textarea element.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 21 '18 at 23:21









                  slugoliciousslugolicious

                  4,91411318




                  4,91411318

























                      1














                      In bootstrap, we have a class called .sr-only for screen reader.



                      HTML



                      <div>
                      <span class="sr-only">Readable text</span>
                      <textarea placeholder="Type a message...."> </textarea>
                      </div>


                      CSS



                      .sr-only {
                      position: absolute;
                      width: 1px;
                      height: 1px;
                      padding: 0;
                      margin: -1px;
                      overflow: hidden;
                      clip: rect(0,0,0,0);
                      border: 0;
                      }





                      share|improve this answer




























                        1














                        In bootstrap, we have a class called .sr-only for screen reader.



                        HTML



                        <div>
                        <span class="sr-only">Readable text</span>
                        <textarea placeholder="Type a message...."> </textarea>
                        </div>


                        CSS



                        .sr-only {
                        position: absolute;
                        width: 1px;
                        height: 1px;
                        padding: 0;
                        margin: -1px;
                        overflow: hidden;
                        clip: rect(0,0,0,0);
                        border: 0;
                        }





                        share|improve this answer


























                          1












                          1








                          1







                          In bootstrap, we have a class called .sr-only for screen reader.



                          HTML



                          <div>
                          <span class="sr-only">Readable text</span>
                          <textarea placeholder="Type a message...."> </textarea>
                          </div>


                          CSS



                          .sr-only {
                          position: absolute;
                          width: 1px;
                          height: 1px;
                          padding: 0;
                          margin: -1px;
                          overflow: hidden;
                          clip: rect(0,0,0,0);
                          border: 0;
                          }





                          share|improve this answer













                          In bootstrap, we have a class called .sr-only for screen reader.



                          HTML



                          <div>
                          <span class="sr-only">Readable text</span>
                          <textarea placeholder="Type a message...."> </textarea>
                          </div>


                          CSS



                          .sr-only {
                          position: absolute;
                          width: 1px;
                          height: 1px;
                          padding: 0;
                          margin: -1px;
                          overflow: hidden;
                          clip: rect(0,0,0,0);
                          border: 0;
                          }






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 21 '18 at 7:19









                          blackcityhenryblackcityhenry

                          19017




                          19017






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • 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%2fstackoverflow.com%2fquestions%2f53406941%2fmake-an-html-textarea-voice-over-readable%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

                              Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                              ts Property 'filter' does not exist on type '{}'

                              Notepad++ export/extract a list of installed plugins