if(link.equalsIgnoreCase(url)) return true;
return false;
}
private String getLinkAttribute(HTMLNode node) {
Attributes attributes = node.getAttributes();
Attribute attribute = attributes.get("href");
if(attribute != null) {
String link = attribute.getValue();
if(link != null && !(link = link.trim()).isEmpty()) {
if(link.charAt(0) == '#') return null;
return link;
}
}
attribute = attributes.get("onclick");
if(attribute == null) return null;
String link = attribute.getValue();
if(link == null
|| (link = link.trim()).isEmpty()
|| link.charAt(0) == '#') return null;