I am new to Jsoup.
I am able to use select command
Elements media = doc.select("[src]");
if you see this : en.wikipedia.org/wiki/States_and_territories_of_India . In that I want to have all the Names in States of India only. But there are other tables also , when I do doc.select(“area[title]”); I am getting all the table information . so I am looking if in select I can tell how it is used to only for a particular table.
I think Jsoup might not address this if that is the case,can you please tell me how to achieve this
Try something like this