$(document).ready(function(){
$("#tabs li").each(function(){
alert($(this).html());
});
});
4
solved How to get inner html of li via id of parent div?
$(document).ready(function(){
$("#tabs li").each(function(){
alert($(this).html());
});
});
4
solved How to get inner html of li via id of parent div?