vote up 0 vote down star

If I have HTML content in a variable like so:

var data = "<div id='myid'><div id='subid'>Text</div></div>";

Is there a way to query this using jQuery and selectors? As this, if it were HTML DOM:

var data = $("#myid > #subid").text();
flag

2 Answers

vote up 3 vote down check

Use jQuery's context:

$doc = $("<div id='myid'><div id='subid'>Text</div></div>");
var data = $("#subid", $doc).text();

Your example is wrong in that it is trying to access the elements by class (".subid") instead of by id ("#subid") - also, if you have an element's ID, it is not necessary to do something like "#myid > #subid" as since there is only one ID per document (if you're doing things properly, at least) then jQuery can just do the native document.getElementById() to find the element. I tested the above and it works fine.

link|flag
Thanks Paolo, that worked like a charm. (Of course, it should be the # prefix, I was a little bit sloppy when typing an example) – Magnus Johansson May 29 at 18:31
vote up 1 vote down

You can use this selector.

var data = "<div id='myid'><div id='subid'>Text</div></div>";
var subIdText = $(data).find('#subid').text();
link|flag

Your Answer

Get an OpenID
or

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