Is there a way that a tooltip message that appears in the browser can be copied into the clipboard?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







4















This is not code I am writing. Otherwise I would use CSS, JavaScript, or an Internet Explorer 8 accelerator for what I need.



Also, I am looking for something my endusers (non-technical) can use. So viewsource, etc. won't help.










share|improve this question















migrated from stackoverflow.com Dec 17 '10 at 3:07


This question came from our site for professional and enthusiast programmers.














  • 2





    Is this an application that you are writing or is this in the context of any application that you are running on your machine?

    – Babak Naffas
    Dec 16 '10 at 19:40











  • I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

    – Lill Lansey
    Dec 16 '10 at 19:49


















4















This is not code I am writing. Otherwise I would use CSS, JavaScript, or an Internet Explorer 8 accelerator for what I need.



Also, I am looking for something my endusers (non-technical) can use. So viewsource, etc. won't help.










share|improve this question















migrated from stackoverflow.com Dec 17 '10 at 3:07


This question came from our site for professional and enthusiast programmers.














  • 2





    Is this an application that you are writing or is this in the context of any application that you are running on your machine?

    – Babak Naffas
    Dec 16 '10 at 19:40











  • I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

    – Lill Lansey
    Dec 16 '10 at 19:49














4












4








4


1






This is not code I am writing. Otherwise I would use CSS, JavaScript, or an Internet Explorer 8 accelerator for what I need.



Also, I am looking for something my endusers (non-technical) can use. So viewsource, etc. won't help.










share|improve this question
















This is not code I am writing. Otherwise I would use CSS, JavaScript, or an Internet Explorer 8 accelerator for what I need.



Also, I am looking for something my endusers (non-technical) can use. So viewsource, etc. won't help.







windows browser clipboard






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 27 at 21:10









Peter Mortensen

8,386166185




8,386166185










asked Dec 16 '10 at 19:39









Lill LanseyLill Lansey

13115




13115




migrated from stackoverflow.com Dec 17 '10 at 3:07


This question came from our site for professional and enthusiast programmers.









migrated from stackoverflow.com Dec 17 '10 at 3:07


This question came from our site for professional and enthusiast programmers.










  • 2





    Is this an application that you are writing or is this in the context of any application that you are running on your machine?

    – Babak Naffas
    Dec 16 '10 at 19:40











  • I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

    – Lill Lansey
    Dec 16 '10 at 19:49














  • 2





    Is this an application that you are writing or is this in the context of any application that you are running on your machine?

    – Babak Naffas
    Dec 16 '10 at 19:40











  • I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

    – Lill Lansey
    Dec 16 '10 at 19:49








2




2





Is this an application that you are writing or is this in the context of any application that you are running on your machine?

– Babak Naffas
Dec 16 '10 at 19:40





Is this an application that you are writing or is this in the context of any application that you are running on your machine?

– Babak Naffas
Dec 16 '10 at 19:40













I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

– Lill Lansey
Dec 16 '10 at 19:49





I edited my question. This is not my code. I upvoted all your answers. If I could have selected all of your answers as the accepted answer I would have. I thought maybe there was a hot key or something. Thanks, all.

– Lill Lansey
Dec 16 '10 at 19:49










8 Answers
8






active

oldest

votes


















4














Open page source, find element, copy title attribute. Assuming that the attribute is not set with JavaScript.



If you are using Firefox, install Firebug and use the element selector to select the element with the tooltip you want to copy, then copy the title attribute from the DOM tree displayed. This will work even if the attribute is set with JavaScript.






share|improve this answer































    3














    Not from the tooltip directly.



    But if you're willing to do a little work, there's always ways to get at this stuff:




    • Right click on the page and select your browser's equivalent of "View Source". Assuming there's no evil JavaScript code preventing access to your source and that the tooltip wasn't pulled via an Ajax request, you should now be able to study the source for the page and find your text somewhere among the HTML and JavaScript content you see there.

    • Alternatively, use a debugger like Firebug that can inspect the active DOM for the page to find the tooltip text in a place that can be copied directly.






    share|improve this answer


























    • Great ideas, but I am looking for something my endusers (non technical) can use.

      – Lill Lansey
      Dec 16 '10 at 19:48











    • @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

      – David
      Dec 16 '10 at 19:54



















    1














    Nope, unfortunately not ... unless someone writes some sort of browser plugin that does this.






    share|improve this answer


























    • I edited my question. This is not my code.

      – Lill Lansey
      Dec 16 '10 at 19:49



















    1














    Babak's comment is kind of important. As it stands right now, it sounds like you're not really writing any code or developing any application; you just want to copy something from your browser to the clipboard.



    Assuming that's what you're trying to do, then it's possible that the tooltip is in the HTML code. Explicit text can be placed in HTML that most browsers render as a tooltip on mouseover (such as the alt property on an img tag). If the tooltip you want to copy to the clipboard is part of the HTML content, then you can view the source from within your browser and copy it from there.



    Some browsers have more modern debugging and inspection tools which allow you to right-click on the element itself and go straight to that point in the source as well.






    share|improve this answer

































      0














      SnagIt, a commercial screen capture tool, can extract text out of a tool tip as well.



      There are also other alternatives but I haven't tried them.






      share|improve this answer































        0














        Clearly by Evernote evernote.com/clearly/‎ works for me - it shows all the tooltips in a list after any normal text in the page.



        (I've only tried this on one type of page, which didn't provide any useful information in in Source Page for the htm.)






        share|improve this answer































          0














          Alternatively, you may try opening the page source and searching for a part of the description text by manually typing it into the search box.



          Also, browsers these days have developer tools built in, so if you're familiar with how they work, it might be easier to just analyze an image and find that text in one of its properties. Or you could search through all connected files using devtools for a part of the description text as well.






          share|improve this answer































            0














            In Chrome:




            1. Load the web page

            2. Open Chrome DevTools... Ctrl+Shift+I (Windows) or Cmd+Opt+I (Mac)

            3. On the web page:


              • Display the tooltip (usually by hovering over some part of the page)

              • Right-click while the tooltip is visible, but do NOT select an item from the context menu (to ensure the tooltip remains visible for step 4)



            4. In Chrome DevTools:


              • Click the "Elements" tab to give the "Elements" panel focus

              • Crtl+F to search within the "Elements" panel

              • Type the first few words of the tooltip text into the search box... now the search string should appear highlighted in the "Elements" panel

              • Click on the element that contains the tooltip text

              • Right-click on the selected element

              • From the content menu, select "Copy" -> "Copy element"




            Done... the entire tooltip text will be on the clipboard now.



            Tested in Chrome 54.0.2840.99 m.






            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',
              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%2fsuperuser.com%2fquestions%2f222950%2fis-there-a-way-that-a-tooltip-message-that-appears-in-the-browser-can-be-copied%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              8 Answers
              8






              active

              oldest

              votes








              8 Answers
              8






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              4














              Open page source, find element, copy title attribute. Assuming that the attribute is not set with JavaScript.



              If you are using Firefox, install Firebug and use the element selector to select the element with the tooltip you want to copy, then copy the title attribute from the DOM tree displayed. This will work even if the attribute is set with JavaScript.






              share|improve this answer




























                4














                Open page source, find element, copy title attribute. Assuming that the attribute is not set with JavaScript.



                If you are using Firefox, install Firebug and use the element selector to select the element with the tooltip you want to copy, then copy the title attribute from the DOM tree displayed. This will work even if the attribute is set with JavaScript.






                share|improve this answer


























                  4












                  4








                  4







                  Open page source, find element, copy title attribute. Assuming that the attribute is not set with JavaScript.



                  If you are using Firefox, install Firebug and use the element selector to select the element with the tooltip you want to copy, then copy the title attribute from the DOM tree displayed. This will work even if the attribute is set with JavaScript.






                  share|improve this answer













                  Open page source, find element, copy title attribute. Assuming that the attribute is not set with JavaScript.



                  If you are using Firefox, install Firebug and use the element selector to select the element with the tooltip you want to copy, then copy the title attribute from the DOM tree displayed. This will work even if the attribute is set with JavaScript.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 16 '10 at 19:48









                  cdhowiecdhowie

                  36615




                  36615

























                      3














                      Not from the tooltip directly.



                      But if you're willing to do a little work, there's always ways to get at this stuff:




                      • Right click on the page and select your browser's equivalent of "View Source". Assuming there's no evil JavaScript code preventing access to your source and that the tooltip wasn't pulled via an Ajax request, you should now be able to study the source for the page and find your text somewhere among the HTML and JavaScript content you see there.

                      • Alternatively, use a debugger like Firebug that can inspect the active DOM for the page to find the tooltip text in a place that can be copied directly.






                      share|improve this answer


























                      • Great ideas, but I am looking for something my endusers (non technical) can use.

                        – Lill Lansey
                        Dec 16 '10 at 19:48











                      • @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                        – David
                        Dec 16 '10 at 19:54
















                      3














                      Not from the tooltip directly.



                      But if you're willing to do a little work, there's always ways to get at this stuff:




                      • Right click on the page and select your browser's equivalent of "View Source". Assuming there's no evil JavaScript code preventing access to your source and that the tooltip wasn't pulled via an Ajax request, you should now be able to study the source for the page and find your text somewhere among the HTML and JavaScript content you see there.

                      • Alternatively, use a debugger like Firebug that can inspect the active DOM for the page to find the tooltip text in a place that can be copied directly.






                      share|improve this answer


























                      • Great ideas, but I am looking for something my endusers (non technical) can use.

                        – Lill Lansey
                        Dec 16 '10 at 19:48











                      • @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                        – David
                        Dec 16 '10 at 19:54














                      3












                      3








                      3







                      Not from the tooltip directly.



                      But if you're willing to do a little work, there's always ways to get at this stuff:




                      • Right click on the page and select your browser's equivalent of "View Source". Assuming there's no evil JavaScript code preventing access to your source and that the tooltip wasn't pulled via an Ajax request, you should now be able to study the source for the page and find your text somewhere among the HTML and JavaScript content you see there.

                      • Alternatively, use a debugger like Firebug that can inspect the active DOM for the page to find the tooltip text in a place that can be copied directly.






                      share|improve this answer















                      Not from the tooltip directly.



                      But if you're willing to do a little work, there's always ways to get at this stuff:




                      • Right click on the page and select your browser's equivalent of "View Source". Assuming there's no evil JavaScript code preventing access to your source and that the tooltip wasn't pulled via an Ajax request, you should now be able to study the source for the page and find your text somewhere among the HTML and JavaScript content you see there.

                      • Alternatively, use a debugger like Firebug that can inspect the active DOM for the page to find the tooltip text in a place that can be copied directly.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jan 27 at 21:13









                      Peter Mortensen

                      8,386166185




                      8,386166185










                      answered Dec 16 '10 at 19:47









                      Joel CoehoornJoel Coehoorn

                      24.4k973120




                      24.4k973120













                      • Great ideas, but I am looking for something my endusers (non technical) can use.

                        – Lill Lansey
                        Dec 16 '10 at 19:48











                      • @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                        – David
                        Dec 16 '10 at 19:54



















                      • Great ideas, but I am looking for something my endusers (non technical) can use.

                        – Lill Lansey
                        Dec 16 '10 at 19:48











                      • @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                        – David
                        Dec 16 '10 at 19:54

















                      Great ideas, but I am looking for something my endusers (non technical) can use.

                      – Lill Lansey
                      Dec 16 '10 at 19:48





                      Great ideas, but I am looking for something my endusers (non technical) can use.

                      – Lill Lansey
                      Dec 16 '10 at 19:48













                      @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                      – David
                      Dec 16 '10 at 19:54





                      @Lill Lansey: If it's a page you control then there are any number of ways to present copyable text to them, so I'm assuming this is just something your users want to be able to do in any page? If that's the case, you'll either need to write some kind of browser plugin for them or give them some basic instruction in Firebug (or some equivalent in the browser of choice) to right-click on an element and see its text. But based on the number of varying ways to create a tooltip, even that will have limited success.

                      – David
                      Dec 16 '10 at 19:54











                      1














                      Nope, unfortunately not ... unless someone writes some sort of browser plugin that does this.






                      share|improve this answer


























                      • I edited my question. This is not my code.

                        – Lill Lansey
                        Dec 16 '10 at 19:49
















                      1














                      Nope, unfortunately not ... unless someone writes some sort of browser plugin that does this.






                      share|improve this answer


























                      • I edited my question. This is not my code.

                        – Lill Lansey
                        Dec 16 '10 at 19:49














                      1












                      1








                      1







                      Nope, unfortunately not ... unless someone writes some sort of browser plugin that does this.






                      share|improve this answer















                      Nope, unfortunately not ... unless someone writes some sort of browser plugin that does this.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jan 27 at 21:14









                      Peter Mortensen

                      8,386166185




                      8,386166185










                      answered Dec 16 '10 at 19:41









                      Joel MartinezJoel Martinez

                      71221118




                      71221118













                      • I edited my question. This is not my code.

                        – Lill Lansey
                        Dec 16 '10 at 19:49



















                      • I edited my question. This is not my code.

                        – Lill Lansey
                        Dec 16 '10 at 19:49

















                      I edited my question. This is not my code.

                      – Lill Lansey
                      Dec 16 '10 at 19:49





                      I edited my question. This is not my code.

                      – Lill Lansey
                      Dec 16 '10 at 19:49











                      1














                      Babak's comment is kind of important. As it stands right now, it sounds like you're not really writing any code or developing any application; you just want to copy something from your browser to the clipboard.



                      Assuming that's what you're trying to do, then it's possible that the tooltip is in the HTML code. Explicit text can be placed in HTML that most browsers render as a tooltip on mouseover (such as the alt property on an img tag). If the tooltip you want to copy to the clipboard is part of the HTML content, then you can view the source from within your browser and copy it from there.



                      Some browsers have more modern debugging and inspection tools which allow you to right-click on the element itself and go straight to that point in the source as well.






                      share|improve this answer






























                        1














                        Babak's comment is kind of important. As it stands right now, it sounds like you're not really writing any code or developing any application; you just want to copy something from your browser to the clipboard.



                        Assuming that's what you're trying to do, then it's possible that the tooltip is in the HTML code. Explicit text can be placed in HTML that most browsers render as a tooltip on mouseover (such as the alt property on an img tag). If the tooltip you want to copy to the clipboard is part of the HTML content, then you can view the source from within your browser and copy it from there.



                        Some browsers have more modern debugging and inspection tools which allow you to right-click on the element itself and go straight to that point in the source as well.






                        share|improve this answer




























                          1












                          1








                          1







                          Babak's comment is kind of important. As it stands right now, it sounds like you're not really writing any code or developing any application; you just want to copy something from your browser to the clipboard.



                          Assuming that's what you're trying to do, then it's possible that the tooltip is in the HTML code. Explicit text can be placed in HTML that most browsers render as a tooltip on mouseover (such as the alt property on an img tag). If the tooltip you want to copy to the clipboard is part of the HTML content, then you can view the source from within your browser and copy it from there.



                          Some browsers have more modern debugging and inspection tools which allow you to right-click on the element itself and go straight to that point in the source as well.






                          share|improve this answer















                          Babak's comment is kind of important. As it stands right now, it sounds like you're not really writing any code or developing any application; you just want to copy something from your browser to the clipboard.



                          Assuming that's what you're trying to do, then it's possible that the tooltip is in the HTML code. Explicit text can be placed in HTML that most browsers render as a tooltip on mouseover (such as the alt property on an img tag). If the tooltip you want to copy to the clipboard is part of the HTML content, then you can view the source from within your browser and copy it from there.



                          Some browsers have more modern debugging and inspection tools which allow you to right-click on the element itself and go straight to that point in the source as well.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Jan 27 at 21:20









                          Peter Mortensen

                          8,386166185




                          8,386166185










                          answered Dec 16 '10 at 19:48









                          DavidDavid

                          51821225




                          51821225























                              0














                              SnagIt, a commercial screen capture tool, can extract text out of a tool tip as well.



                              There are also other alternatives but I haven't tried them.






                              share|improve this answer




























                                0














                                SnagIt, a commercial screen capture tool, can extract text out of a tool tip as well.



                                There are also other alternatives but I haven't tried them.






                                share|improve this answer


























                                  0












                                  0








                                  0







                                  SnagIt, a commercial screen capture tool, can extract text out of a tool tip as well.



                                  There are also other alternatives but I haven't tried them.






                                  share|improve this answer













                                  SnagIt, a commercial screen capture tool, can extract text out of a tool tip as well.



                                  There are also other alternatives but I haven't tried them.







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Jan 5 '11 at 6:32









                                  mvarkmvark

                                  2,19911118




                                  2,19911118























                                      0














                                      Clearly by Evernote evernote.com/clearly/‎ works for me - it shows all the tooltips in a list after any normal text in the page.



                                      (I've only tried this on one type of page, which didn't provide any useful information in in Source Page for the htm.)






                                      share|improve this answer




























                                        0














                                        Clearly by Evernote evernote.com/clearly/‎ works for me - it shows all the tooltips in a list after any normal text in the page.



                                        (I've only tried this on one type of page, which didn't provide any useful information in in Source Page for the htm.)






                                        share|improve this answer


























                                          0












                                          0








                                          0







                                          Clearly by Evernote evernote.com/clearly/‎ works for me - it shows all the tooltips in a list after any normal text in the page.



                                          (I've only tried this on one type of page, which didn't provide any useful information in in Source Page for the htm.)






                                          share|improve this answer













                                          Clearly by Evernote evernote.com/clearly/‎ works for me - it shows all the tooltips in a list after any normal text in the page.



                                          (I've only tried this on one type of page, which didn't provide any useful information in in Source Page for the htm.)







                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Dec 4 '13 at 20:09









                                          AmerAmer

                                          1




                                          1























                                              0














                                              Alternatively, you may try opening the page source and searching for a part of the description text by manually typing it into the search box.



                                              Also, browsers these days have developer tools built in, so if you're familiar with how they work, it might be easier to just analyze an image and find that text in one of its properties. Or you could search through all connected files using devtools for a part of the description text as well.






                                              share|improve this answer




























                                                0














                                                Alternatively, you may try opening the page source and searching for a part of the description text by manually typing it into the search box.



                                                Also, browsers these days have developer tools built in, so if you're familiar with how they work, it might be easier to just analyze an image and find that text in one of its properties. Or you could search through all connected files using devtools for a part of the description text as well.






                                                share|improve this answer


























                                                  0












                                                  0








                                                  0







                                                  Alternatively, you may try opening the page source and searching for a part of the description text by manually typing it into the search box.



                                                  Also, browsers these days have developer tools built in, so if you're familiar with how they work, it might be easier to just analyze an image and find that text in one of its properties. Or you could search through all connected files using devtools for a part of the description text as well.






                                                  share|improve this answer













                                                  Alternatively, you may try opening the page source and searching for a part of the description text by manually typing it into the search box.



                                                  Also, browsers these days have developer tools built in, so if you're familiar with how they work, it might be easier to just analyze an image and find that text in one of its properties. Or you could search through all connected files using devtools for a part of the description text as well.







                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Dec 4 '13 at 20:14









                                                  user1306322user1306322

                                                  2,15393673




                                                  2,15393673























                                                      0














                                                      In Chrome:




                                                      1. Load the web page

                                                      2. Open Chrome DevTools... Ctrl+Shift+I (Windows) or Cmd+Opt+I (Mac)

                                                      3. On the web page:


                                                        • Display the tooltip (usually by hovering over some part of the page)

                                                        • Right-click while the tooltip is visible, but do NOT select an item from the context menu (to ensure the tooltip remains visible for step 4)



                                                      4. In Chrome DevTools:


                                                        • Click the "Elements" tab to give the "Elements" panel focus

                                                        • Crtl+F to search within the "Elements" panel

                                                        • Type the first few words of the tooltip text into the search box... now the search string should appear highlighted in the "Elements" panel

                                                        • Click on the element that contains the tooltip text

                                                        • Right-click on the selected element

                                                        • From the content menu, select "Copy" -> "Copy element"




                                                      Done... the entire tooltip text will be on the clipboard now.



                                                      Tested in Chrome 54.0.2840.99 m.






                                                      share|improve this answer






























                                                        0














                                                        In Chrome:




                                                        1. Load the web page

                                                        2. Open Chrome DevTools... Ctrl+Shift+I (Windows) or Cmd+Opt+I (Mac)

                                                        3. On the web page:


                                                          • Display the tooltip (usually by hovering over some part of the page)

                                                          • Right-click while the tooltip is visible, but do NOT select an item from the context menu (to ensure the tooltip remains visible for step 4)



                                                        4. In Chrome DevTools:


                                                          • Click the "Elements" tab to give the "Elements" panel focus

                                                          • Crtl+F to search within the "Elements" panel

                                                          • Type the first few words of the tooltip text into the search box... now the search string should appear highlighted in the "Elements" panel

                                                          • Click on the element that contains the tooltip text

                                                          • Right-click on the selected element

                                                          • From the content menu, select "Copy" -> "Copy element"




                                                        Done... the entire tooltip text will be on the clipboard now.



                                                        Tested in Chrome 54.0.2840.99 m.






                                                        share|improve this answer




























                                                          0












                                                          0








                                                          0







                                                          In Chrome:




                                                          1. Load the web page

                                                          2. Open Chrome DevTools... Ctrl+Shift+I (Windows) or Cmd+Opt+I (Mac)

                                                          3. On the web page:


                                                            • Display the tooltip (usually by hovering over some part of the page)

                                                            • Right-click while the tooltip is visible, but do NOT select an item from the context menu (to ensure the tooltip remains visible for step 4)



                                                          4. In Chrome DevTools:


                                                            • Click the "Elements" tab to give the "Elements" panel focus

                                                            • Crtl+F to search within the "Elements" panel

                                                            • Type the first few words of the tooltip text into the search box... now the search string should appear highlighted in the "Elements" panel

                                                            • Click on the element that contains the tooltip text

                                                            • Right-click on the selected element

                                                            • From the content menu, select "Copy" -> "Copy element"




                                                          Done... the entire tooltip text will be on the clipboard now.



                                                          Tested in Chrome 54.0.2840.99 m.






                                                          share|improve this answer















                                                          In Chrome:




                                                          1. Load the web page

                                                          2. Open Chrome DevTools... Ctrl+Shift+I (Windows) or Cmd+Opt+I (Mac)

                                                          3. On the web page:


                                                            • Display the tooltip (usually by hovering over some part of the page)

                                                            • Right-click while the tooltip is visible, but do NOT select an item from the context menu (to ensure the tooltip remains visible for step 4)



                                                          4. In Chrome DevTools:


                                                            • Click the "Elements" tab to give the "Elements" panel focus

                                                            • Crtl+F to search within the "Elements" panel

                                                            • Type the first few words of the tooltip text into the search box... now the search string should appear highlighted in the "Elements" panel

                                                            • Click on the element that contains the tooltip text

                                                            • Right-click on the selected element

                                                            • From the content menu, select "Copy" -> "Copy element"




                                                          Done... the entire tooltip text will be on the clipboard now.



                                                          Tested in Chrome 54.0.2840.99 m.







                                                          share|improve this answer














                                                          share|improve this answer



                                                          share|improve this answer








                                                          edited Jan 27 at 21:21









                                                          Peter Mortensen

                                                          8,386166185




                                                          8,386166185










                                                          answered Nov 29 '16 at 0:47









                                                          nmfonnmfon

                                                          11




                                                          11






























                                                              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.




                                                              draft saved


                                                              draft discarded














                                                              StackExchange.ready(
                                                              function () {
                                                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f222950%2fis-there-a-way-that-a-tooltip-message-that-appears-in-the-browser-can-be-copied%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

                                                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                                              Alcedinidae

                                                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]