Is there any library that could help with html string manipulation inside a web worker ?
What I'd like to be able to do is, inside a worker, have sizzle-type selector tool that would allow me to do things like:
hString = "<div><img src='foo'></img></div>"
imgSrc = $(hString).find("img").attr("src") // foo
, without the DOM interaction.