I am looking to create a system which on signup will create a subdomain on my website for the users account area.
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
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".
Element div = doc.getElementById("eventTTL");
ReplyDeleteString attr = div.attr("eventTTL");
System.out.println(attr);