tags:

views:

27

answers:

1

Hi, I have the following HTML:

<td onclick="fbm_bet('53987976','1','6','')" class="bfbhlt">

Is it possible to use Xpath to locate the looking for the number 53987976. Something similar to:

//td[@contains="53987988"]

Many thanks, Stefan

+2  A: 
//td[contains(@onclick,'53987976')]
Woody
Worked like a charm! Thanks a million!
StefanE