Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting inner HTML of element by next way:

$(this).context.innerHTML

Then I am getting parent inner HTML:

$(this).parent().context.innerHTML

But this code returns same values. Any ideas what is wrong?

share|improve this question

2 Answers

up vote 5 down vote accepted

To get the contents of an element, then the contents of it's parent the jQuery markup would be

$(this).html();

and

$(this).parent().html();

http://api.jquery.com/html/

share|improve this answer

The context for both queries are the same, which in this case is the element that this represents. When you call parent() the context does not change. It is still the element that this represents.

You can specify the context of a query like this:

$("...", contextElement)

For more information visit:

share|improve this answer

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.