I got an html page through an AJAX request
$.ajax({ async: true, method: \'GET\', url: linkPage, // cache: true, success: function (data) {
The following jQuery Won't work:
$(data).find('sustainable');
as the divs are top level elements and data isn't an element but a string, to make it work you need to use .filter
$(data).filter('sustainable.wrap');