How would you write the Jquery to get the closest div that actually has an ID defined?
JQuery: Closest div that has an ID
60.3k Views Asked by mike At
3
There are 3 best solutions below
2

$(elementToStart).parent().closest('div[id]');
I use the parent() to avoid just getting the element itself.
Example: http://jsfiddle.net/zQRFT/1/
0

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
You should use has attribute selector. This sample should do the work: