
But there still is empty <ul> element:

Please, help me to remove this element.
<script type="text/javascript">(function($) {$(document).ready(function() {
$('ul').each(function(){
if( $(this).html().trim() == '' ) {
$(this).remove();
}
});
});})(jQuery)</script>