Ленча,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$(".tablewrap").each(function(indx, el){
$(el).has(".items-row").length || $(el).remove()
});
});
</script>
</head>
<body>
<div class="tablewrap">
<h2>Заголовок</h2>
<div class="items-row">
блаблабла
</div>
</div>
<div class="tablewrap">
<h2>Заголовок</h2>
</div>
<div class="tablewrap">
<h2>Заголовок</h2>
<div class="items-row">
блаблабла
</div>
</div>
</body>
</html>