Can someone tell me how to hide a <ul>
when I only have one child <li>
in it?
I have this code but it's not working.
$(document).ready(function() {
$("#flex-slider-carousel ul li").length();
if($('#flex-slider-carousel ul li').length == 1){
$("#flex-slider-carousel ul li").hide();}
});
Thanks!