[Solved] How to get inner html of li via id of parent div?


$(document).ready(function(){
    $("#tabs li").each(function(){
        alert($(this).html());
    });
});

http://jsfiddle.net/t2o3vppa/1/

4

solved How to get inner html of li via id of parent div?