i'm a new in programming jQuery. I want to parse an external html page and show it in a mobile app.
function mealSearch() {
$.get('http://www.web-page.de/page.html', function(html){
html = $(html.replace(/<img[^>]*>/g,""));
console.log((html));
});
I get the whole html page I want, without the pictures.
Now I want to get only the part which is in a special div?
When I add .find after the replace, I get an error: has no method find
Thanks for your help