About 256,000 results
Open links in new tab
  1. Get HTML code using JavaScript with a URL - Stack Overflow

    Jun 16, 2011 · I am trying to get the source code of HTML by using an XMLHttpRequest with a URL. How can I do that? I am new to programming and I am not too sure how can I do it …

  2. How to retrieve the HTML code of a particular site's homepage

    Apr 9, 2016 · 1 There are multiple ways of getting the HTML source code of a page One way, as you already know is by viewing the page's source code. If you Right Click -> View Page …

  3. How do I get the HTML source from the page? - Stack Overflow

    Is there a way to access the page HTML source code using javascript? I know that I can use document.body.innerHTML but it contains only the code inside the body. I want to get all the …

  4. javascript - Get HTML source code as a string - Stack Overflow

    Feb 29, 2012 · a source code is the unprocessed html that the website developer wrote. innerHTML would give the DOM converted into a string. A DOMed html would have been fixed …

  5. Copying HTML code in Google Chrome's inspect element

    Apr 28, 2014 · 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 …

  6. How do I get the HTML code of a web page in PHP?

    Yes, same thing I want, i want the whole source code in a variable returned by that web request.

  7. how to get html page source by C# - Stack Overflow

    Jan 21, 2017 · I want to save complete web page asp in local drive by .htm from url or url but I did not success. Code

  8. javascript - Get html source code from a website and then get an ...

    Sep 23, 2019 · There are things that can get HTML code like ajax and jquery. I am using node and want it to be in total javascript. Also, I have no idea how to get a certain element from that.

  9. Get FULL HTML content web page (including javascript content)

    May 11, 2015 · 1 - Get HTML content and save it For this step, you will need to download phantomjs and use it to get the content. Here is the code to get the target page. Just change …

  10. How to read html from a url in python 3 - Stack Overflow

    Jun 11, 2014 · I looked at previous similar questions and got only more confused. In python 3.4, I want to read an html page as a string, given the url. In perl I do this with LWP::Simple, using …