Suppose there is a code like this on site.com/usertest:
<td class="play_btn"> <a onclick="playAudioNew('1234567890')"><div class="play_new" id="1234567890"></div></a> <input type="hidden" id="1234567890" value="http://blablabla.mp3,294" /> </td> <td class="info"> <div class="duration fl_r" onmousedown="if (window.audioPlayer) audioPlayer.switchTimeFormat('1234567890', event);">4:54</div> <div class="title_wrap"><b><a href="index.php" onclick="if (checkEvent(event)) return; Audio.selectPerformer(event, 'Example'); return false">Name Audio</a></b> - <span class="title">Name Song</span><span class="user"></span></div> </td> The code is repeated Nth number of times with the same structure but different values.
<12 input type = "hidden" id = "1234567890" value = " http: //blablabla.mp3 , 294" />
<123a href="index.php" onclick="if (checkEvent(event)) return; Audio.selectPerformer(event, 'Example'); return false">**Name Audio**</a>< /b> - < span class="title">**Name Song**< /span>< span class="user">< span>< /div> </td> I need to parse the Name Audio values — the Name Song and blablabla.mp3 of the entire page. Their values may be different.