I am having a problem getting the innerHTML from an object. At the moment I have this code:
console.log( $(myString).find("#" + someID).prevObject );
- myString is a string variable of HTML code
- someID is the current ID of the HTML tag to get. In this example, it gets a
<li>element from the string with the matching ID.
This outputs the following in the console:

I am just struggling to work out how to get the innerHTML attribute from this log.
Cheers
You can get the HTML of an element via the jQuery
htmlfunction. So assuming the element with the ID really exists:That will give you what you said you wanted: The HTML of the
liwith thatid. Note that I removed theprevObject. Two reasons for that:You said you wanted the HTML of the
liwith thatid. If you do, you don’t wantprevObject.prevObjectis an undocumented aspect of jQuery. It can change meaning, change name, or go away entirely from one dot release to the next. (But mostly point #1.)