vote up 1 vote down star

I'm trying to get the email to a friend link from this page using xpath.

http://www.guardian.co.uk/education/2009/oct/14/30000-miss-university-place

The link itself is wrapped up in tags like this

    		<li><a class="rollover sendlink" href="http://www.guardian.co.uk/email/354237257"  title="Opens an email form" name="&lid={pageToolbox}{Email a friend}&lpos={pageToolbox}{2}"><img src="http://static.guim.co.uk/static/80163/common/images/icon_email-friend.gif" alt="" class="trail-icon" /><span>Send to a friend</span></a></li>

I'm using this for my query, but it's not quite right.

    		$links = $xpath->query("//a/span[text()='Send to a friend']/@href");
flag

4 Answers

vote up 3 vote down check

You're trying to get the href of the span there. I think you want

$links = $xpath->query("//a[span/text()='Send to a friend']/@href");
link|flag
vote up 1 vote down

You need to use something like this (since href is an attribute of a):

$links = $xpath->query("//a[span/text()='Send to a friend']/@href");
link|flag
vote up 1 vote down

The href is an attribute of the anchor hence you need:-

 $links = $xpath->query("//a[span[text()='Send to a friend']]/@href");
link|flag
vote up 1 vote down

try this

 $links = $xpath->query("//a[span='Send to a friend']/@href");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.