Domanda

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?

È stato utile?

Soluzione

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");

Altri suggerimenti

you can use the parents() method for that

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

just find its parent ul using parent()

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

Demo Fiddle

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top