Skip to content Skip to sidebar Skip to footer

How Do I Select Specific Elements From Div?

I want to get the date from this div:
Date Qualified

2013-03-08

Solution 1:

Try without quote marks

doc.select("p[id^=QualDate]");

Value of attribute is set inside quote marks <tag attribute="value">, but those quote marks are not part of value.

Post a Comment for "How Do I Select Specific Elements From Div?"