jQuery each Loop

jQuery each Loop
jQuery(document).ready(function(){        
            jQuery('.tab-pane .col-4').each(function(){ 
                    if(jQuery(this).find('a img').length == 0){  
                            jQuery(this).hide();         
                    };      
  
           }); 
});

Leave a Reply

Your email address will not be published. Required fields are marked *