I have a PHP page with an else statement that filters out data from a SQL database by user input; here is some pseudo code:
NextPage.php
    //Include database configuration file
    include('../dbConfig.php'); 
    if(isset($_POST['pageno']) || isset($_POST['FetchFilters'])) {
        $limit = 10;    
        $pageno = $_POST['pageno'];
        $offset = !empty($pageno) ? $pageno: 1;
        $SQL = "
            SELECT * FROM list WHERE wt >= 2.5
        ";
        if($pageno >= 1) {
            if(isset($_POST["shape"])) {
                $shape_filter = implode("','", $_POST["shape"]);
                $SQL .= "
                    AND stoneshape IN('".$shape_filter."') 
                ";
            }
            if(isset($_POST["color"])) {
                $color_filter = implode("','", $_POST["color"]);
                $SQL .= "
                    AND stonecolor IN('".$color_filter."')
                ";
            }
            $SQL .= "
                ORDER BY wt ASC
                LIMIT 
                    $offset,
                    $limit
            ";
            $result = mysqli_query($db, $SQL);
            $output = '';
            if(isset($_POST["shape"]) && isset($_POST["color"]) && $row = mysqli_fetch_array($result)) {
                while($row = mysqli_fetch_array($result)) {
                    $output .=  '
                        <div class="Listing">
                            <!-- landing page -->
                            <a href="#ItemPage" class="ItemLink">
                                //Item Information goes here
                            </a>
                        </div>
                    ';
                }
            }
        } else {
            $output = '
                <h1 class="Error">
                    NO DATA MATCHES THAT
                </h1>
            ';
        }
        echo $output;
    }
?>
Then I have an AJAX call that paginates when an image (with the ID of #Loader in inView); here is it's pseudo code:
InfiniteScroll.js
$(document).ready(function(){
    $('#Loader').on('inview', function(event, isInView) {
        if (isInView) {
            //Pagination    
            var nextPage = parseInt($('#pageno').val()) + 1;
            //Filters
            var shape = get_filter('shape');
            var color = get_filter('color');
            $.ajax({
                type: 'POST',
                url: 'vendors/php/NextPage.php',
                data: {
                    pageno: nextPage,
                    shape: shape,
                    color: color
                },
                async: true,
                cache: false,
                error: 
                    function(jqXHR, strError) {
                        if(strError == 'timeout') {
                            // Do something. Try again perhaps?
                            alert('Seems like there was an error loading the next page.');
                        }
                    },
                success: 
                    function(data) {
                        $('#Container').append(data); //Container where the NextPage.php data appends to
                        $('#pageno').val(nextPage);
                        if(data != '') { //Here is where my question lyes
                            $('.Error').hide();     //Else statement on NextPage.php should 'hide' as there is data to show
                            $('#Loader').show();    //Show image for pagination
                        } else {
                            $('.Error').show();     //Else statement on NextPage.php should 'show' as there is data to show
                            $('#Loader').hide();    //Hide image for pagination 
                        }
                    },
                timeout: 3000
            });
        }
    });
});
//Gets values of filters for filters variables
function get_filter(class_name) {
    var filter = [];
    $('.'+class_name+':checked').each(function() {
        filter.push($(this).val());
    });
    return filter;
}
My problem is that the else statement on NextPage.php is treated as data so I don't know how to check if $row is showing. I want the .Error class to hide when there are $row(s) being shown else hide #Loader and show .Error. How can I check for .Error in my AJAX call?