chihung
2/4/2020 - 2:41 AM

hide empty div

jQuery(document).ready(function($){
  $('.row-label').filter(function() {
    return $.trim($(this).text()) === ''
  }).hide()
});