I'm trying to get all callable phone numbers out of an html-received with a get
:
onload: function (data)
{
data = $.parseHTML(data.response);
var content = $.trim($(data).find('[href^=callto:]').text());
console.log(content)
//var content= $(data).find('.');
}
The data is correct, i successfully found find('.tel')
, a class used in the html.