Hi I have extracted the html source code from a website using jquery. I am trying to extract link under a specific tag which is of the form <p class="title"> <a href="some link ">
I am trying to extract the link under a href.
To extract the html i did
$.get("link",function(data){ alert($data('p').attr('title')); }
data contains the html source code. The alert box shows as undefined. Is it not possible to extract the
tag with data in this format? I am not able to get how to extract the link under the href tag. Please help