jQuery each Loop
- سُلَيْمَان بْن دَاوُوْد

- Jul 2, 2022
- 1 min read
jQuery(document).ready(function(){
jQuery('.tab-pane .col-4').each(function(){
if(jQuery(this).find('a img').length == 0){
jQuery(this).hide();
};
});
});
Comments