Is there a built in function in jQuery that would allow me to get all the parents up to a parent with specific Id? I have a deeply nested unordered list, and if I have a referen
$('li').closest('ul')
Parents Until should work for that. I think you need jQuery 1.4 to use it though.