getting attribute value from Div tag through jSoup

JNPW picture JNPW · Feb 10, 2012 · Viewed 16.5k times · Source

I have a Div tag as below

<div id="eventTTL" style="text-transform: uppercase; font-weight: 900;" eventTTL="4583476000">5 days 07:14:41</div>

How do i get the value of eventTTL? I want to display the value of eventTTL ie:) "4583476000".

Answer

B. Anderson picture B. Anderson · Feb 10, 2012
Element div = doc.getElementById("eventTTL");
String attr = div.attr("eventTTL");
System.out.println(attr);

More info at: https://jsoup.org/cookbook/extracting-data/attributes-text-html