Suppose I am trying to fetch page which throws a 404 not found response yet shows an html page. I want to get html elements of that page using jQuery.
    $.ajax({
    url: 'http://example.com/page/2/',
    type: 'GET',
    success: function(data){ 
        console.log($(data).find('#reviews .card').text());
    },
    error: function(data) {
        console.log($(data).find('.not-found').text());
    }
});
I get this message in console window
GET http://example.com/page/2/ 404 ()
Suppose I wanna grab the title from the page which says "Page does not exist." and the JSON object data returned between the <script> </script> of the html of the page, how should I do it? 
 
     
    