Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
30
rated 0 times [  34] [ 4]  / answers: 1 / hits: 16289  / 12 Years ago, tue, july 24, 2012, 12:00:00

I am trying to load a HTML page into my app. I want to show only the content of the HTML page.
please help me with a javascript function where I can loop through all the p tags and get the content of the <p> tags to display in a TextView as string.



<html><body> +
<h1>First</h1><p>text text text</p> +
<h1>Second</h1>more text +
<p>text text text</p>
<p>text text text</p>
<p>text text text</p>
</body></html>

More From » android

 Answers
22

If you do not want to use jQuery just do:



var paragraphs = document.getElementsByTagName(p);
for(var i = 0; i < paragraphs.length; i++)
{
alert(paragraphs[i].innerHTML);
}

[#84072] Sunday, July 22, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cruzs

Total Points: 710
Total Questions: 113
Total Answers: 100

Location: Nepal
Member since Sat, Jul 18, 2020
4 Years ago
;