Código HTML:
<ul style="border:#000 solid thin; margin-left:30px;"> <li style="border:#0f0 solid thin;"> <a href='javascript:;' class='L' rel='36'>a (1)</a> <a href='/members/a' target='_blank'>[Contacar con el usuario]</a> <br> --> <b>[email protected]</b> <ul class="wpmlm-dependiente" style="border:#000 solid thin; margin-left:30px;"> <li style="border:#0f0 solid thin;"> <a href='javascript:;' class='L' rel='37'>b (1)</a> <a href='/members/b' target='_blank'>[Contacar con el usuario]</a> <br> --> <b>[email protected]</b> <ul class="wpmlm-dependiente" style="border:#000 solid thin; margin-left:30px;"> <li style="border:#0f0 solid thin;"> <a href='javascript:;' class='L' rel='38'>c (0)</a> <a href='/members/c' target='_blank'>[Contacar con el usuario]</a> <br> --> <b>[email protected]</b> </li> </ul> </li> </ul> </li> <li style="border:#0f0 solid thin;"><a href='javascript:;' class='L' rel='39'>d (0)</a> <a href='/members/d' target='_blank'>[Contacar con el usuario]</a><br> --> <b>[email protected]</b></li></ul>
entonces tengo este script
Código HTML:
function getChildMembers($, this_obj) { var current_user_id, container_toappend; if($("#current_user_id").val() !='') { current_user_id = $("#current_user_id").val(); container_to_append = $("#mlm_members"); } else { current_user_id = $(this_obj).attr('rel'); container_to_append = $(this_obj).parent(); } container_to_append.append($('#loading').html()); container_to_append.find('div').remove(); //mask($, 'mlm_members'); $.get(ajaxurl, {action: "get_mlm_listing", current_user_id:current_user_id}, function(data) { $("#current_user_id").val(''); container_to_append.find('img').remove(); container_to_append.append(data); $("a.L"+current_user_id).click( function() { $(this).find('ul.wpmlm-dependiente').css({display: "block"}); }); }); }
donde tengo la funcion
Código HTML:
$("a.L"+current_user_id).click( function() { $(this).find('ul.wpmlm-dependiente').css({display: "block"}); });
si alguien ve algo rearo, por que ya no me quedan ojos...
nota: esto está integrado en un plugin de wordpress