Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create an array of all the elements to where the user clicked in a content editable div. I have this working with the following code.

 var els = [];
 var target = event.target;
 while (target){ //Create an array of parent elements
    els.push(target); //Push target to the back of the array
    target = target.parentNode; 
}

But I was wondering if I could reduce this to one line with jQuery. jQuery .parents() almost gets me there but it doesn't include the first event.target

var els = $(event.target).parents();

Is there a way to include the element itself with .parents() or is there a better way of doing this?

share|improve this question
1  
You can use andSelf to include the target element. – Ricardo Lohmann Dec 6 '12 at 17:01
I have tried andSelf() and it returns the reverse of the array. – Blake Plumb Dec 6 '12 at 17:06
Have you assigned an onclick event to parent element ? – Omid Dec 6 '12 at 17:19
I have a click event for the content editable div – Blake Plumb Dec 6 '12 at 17:22

2 Answers

up vote 5 down vote accepted

How about andSelf ?

var els = $(event.target).parents().andSelf();

Mine would get you, great-grandparent, grandparent, parent, self.

If you want: self, parent, grandparent, great-grandparent, try extending Jquery with this:

$.fn.reverse = [].reverse;

and then doing:

var els = `$(event.target).parents().andSelf().reverse();

Example: jsFiddle

share|improve this answer
Evidently this didn't work for the OP (see comment above). – Asad Dec 6 '12 at 17:11
This worked after combining with dystroy .get().reverse() Thanks for the help! – Blake Plumb Dec 6 '12 at 17:28

You can use add :

var els = $(event.target).parents().add(event.target);

or, if you want them in a different order :

var els = $(event.target).add($(event.target).parents());

If what you need is an array (ie not a jQuery object), you can use reverse :

var els = $(event.target).parents().add(event.target).get().reverse();
share|improve this answer
This seems to almost do it but both your methods come up with the reverse of what I want it seems. – Blake Plumb Dec 6 '12 at 17:18
@BlakePlumb See edit : is that OK for you ? – dystroy Dec 6 '12 at 17:23
I have chosen to go with Treborbob answer but +1 for the .get().reverse() – Blake Plumb Dec 6 '12 at 17:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.