I am working in get wheather conditions from a web. http://trestlebikepark.com/
When I use the Inspect Element Function from Chrome or Firefox I find the div class with the text I need (34F).
<div class="overlayWeather">
<div class="title">Current</div>
<div class="icon"><span class="climacon sun"></span></div>
<div class="temperature">34 °F</div>
<div class="conditions">Sunny</div>
</div>
But in the Source Code the content is empty.
<div class="currentStatusOverlay">
<div class="overlayWeather">
<div class="title">Current</div>
<div class="icon"><span class="climacon"></span></div>
<div class="temperature"></div>
<div class="conditions"></div>
</div>
</div>
How I can get this texts?
I tried
Document doc = Jsoup.connect(url).get();
Elements div = doc.select("div.temperature");
String temp = div.text();
I receive empty results
I understand than the table is populated after the page is loaded, but I cant find information on how get this values in an android textView