Copying HTML code in Google Chrome's inspect element

210,336

Solution 1

Do the following:

  1. Select the top most element, you want to copy. (To copy all, select <html>)
  2. Right click.
  3. Select Edit as HTML
  4. New sub-window opens up with the HTML text.
  5. This is your chance. Press CTRL+A/CTRL+C and copy the entire text field to a different window.

it's the easiest way to do this.

Solution 2

  1. Right click → copy → copy element

enter image description here

Solution 3

  1. Select the <html> tag in Elements.
  2. Do CTRL-C.
  3. Check if there is only lefting <!DOCTYPE html> before the <html>.

Solution 4

Using HTTrack software you can download all the website content to your local directory. HTTrack: http://www.httrack.com/

Share:
210,336
Admin
Author by

Admin

Updated on August 05, 2021

Comments

  • Admin
    Admin almost 3 years

    I have a website of which I want to copy an HTML code from - how do I copy all the text in inspect element - so I don't get the website's HTML code, but the code that I have already changed so that I don't have elements I don't want in my own webpage?

  • Nic
    Nic almost 8 years
    I've slightly edited your answer to use Markdown formatting instead of manual stuff. I'd recommend learning Markdown, if only because your posts become so much prettier :)
  • djack109
    djack109 almost 4 years
    This is the more correct answer. Copy element copies the source of the page and not the rendered content :(
  • amIllusionist
    amIllusionist almost 4 years
    It copies all page elements but it does not copy inputted values. How can I copy the page source and the input values together? @barryjones
  • amIllusionist
    amIllusionist almost 4 years
    It copies all page elements but it does not copy inputted values. How can I copy the page source and the input values together?