how to count visible elements of ul li in jquery Posted by Unknown on March 10, 2015 Get link Facebook X Pinterest Email Other Apps 1 1 2 2 3 3 =========================================== 1 2 3 4 5 var visible = $('li:visible').map(function() { return this.title; }).get().join('-'); // alert(visible); Comments
Comments
Post a Comment