<html>
<head>
<script src="jquery.js"></script>
<script>
$(function(){
$("#includedContent").load("b.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>
add_filter('the_content','your_delete_function');
function your_delete_function($content) {
return str_replace('?<p> </p>?', '', $content);
}