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?
|
I am getting inner HTML of element by next way:
Then I am getting parent inner HTML:
But this code returns same values. Any ideas what is wrong? |
||||
|
|
|
To get the contents of an element, then the contents of it's parent the jQuery markup would be
and
|
|||
|
|
|
The context for both queries are the same, which in this case is the element that You can specify the context of a query like this:
For more information visit: |
||||
|
|