Pands - 2007-01-13

could someone throw lights on how to handle the <link>

I want to extract the href value from the following html,

<link rel="stylesheet" href="dummy11.css" type="text/css"/>

I used,

NodeList linkTags = nodeList.extractAllNodesThatMatch(new NodeClassFilter(LinkTag.class), true); 
NodeIterator nI = linkTags.elements();

but filter recognizes only <a> tags... Any help here ? Appreciate your response.

Regards,
Pands