Pergunta

Hey guys I was just wondering whether there is a way to find out what Unordered List the List Item is in? So like for example I have a UL with the ID 1 and another one with the ID 2 and I'd have the List Items under both Unordered List sortable but on update I want to find out what Unordered List the List Item has been left in.

How Would I do this?

Foi útil?

Solução

Your best bet would be to use closest rather than parents in case you have nested lists. closest will only return the nearest ancestor matching the selector as opposed to parents which will return all ancestors matching (potentially multiple instead of just one).

Assuming in your case this is your li:

$(this).closest("ul");

Outras dicas

you can use the parents() method for that

$("#ID1").parents("ul");

just find its parent ul using parent()

$("li").parents("ul");

Demo Fiddle

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top