andyunleash
1/16/2018 - 10:06 PM

Strip Empty Images


$('document').ready(function() {
    $('a').each(function() {
        if($(this).attr('href').length < 1){
	    	    $(this).remove();
	      }
	  });
});