JQuery: Closest div that has an ID

60.3k Views Asked by At

How would you write the Jquery to get the closest div that actually has an ID defined?

3

There are 3 best solutions below

3
On BEST ANSWER

You should use has attribute selector. This sample should do the work:

$('selector').closest('[id]')
2
On
$(elementToStart).parent().closest('div[id]');

I use the parent() to avoid just getting the element itself.

Example: http://jsfiddle.net/zQRFT/1/

0
On

Look for an id attribute on a div, using the closest method:

$(this).closest('div[id]');

The [id] brackets there is what's called the Has Attribute Selector