You must select the text from the html code. For example, given:
<div>first</div><div>second</div><br /><div> third</div>.
Need to get:
first second third
I tried using jQuery.text()
, but I get:
firstsecond third
What is not very good.
So how to do it by means of .NET
, using, perhaps, third-party libraries? And preferably as productively as possible.