[jQuery] How to parse html element from an html string? Shouldnt this work....
Isnt one of these supposed to work?
They all return null
alert(
$("#content", $("<div id='content'>abc</div>")).html
()
);
alert(
$("#content", "<div id='content'>abc</div>").html()
);
Please advise.