I am trying to return back all the
hyperlinks on the page that I am querying using the rest query.
this is the yql query I used
select * from html where url="http://www.stickam.com/videoPlaylist.do?uId=182005497" and xpath="//*[@class='mediaThum']/a"
here is the code
<script src="jquery.1.6.1.js"></script>
<script>
$(document).ready(function(){
var yql = "http://query.yahooapis.com/v1/public/yql?q=%20SELECT%20*%20FROM%20html%20WHERE%20url%3D%22http%3A%2F%2Fwww.stickam.com%2FvideoPlaylist.do%3FuId%3D182005497%22%20and%20xpath%3D%22%2F%2F*%5B%40class%3D'mediaThum'%5D%2Fa%22%20";
$.get( yql, cbFunc );
function cbFunc(data) {
alert(data.query.results.a[0].href);
}//END FUNC
});//end document.ready
</script>
Thanks Anthony.