I have a simple string e.g.
var s = "<p>Hello World!</p><p>By Mars</p>";
How do I convert s to a jQuery object? My objective is to remove the <p>s and </p>s. I could have done this using regex, but that's rather not recommended.
|
I have a simple string e.g.
How do I convert |
||||
|
In the simplest form (if I am understanding correctly):
Or you could use a conditional selector with a search context:
If you are parsing large amounts of HTML (for example, interpreting the results of a screen scrape), use a server-side HTML parsing library, not jQuery (tons of posts on here about HTML parsing). |
|||||||
|
|
To get all the strings there use
|
|||
|
|
|
if you don't want regex, why don't u just:
|
|||||||||||||||
|
.text()does fulfill what I needed. – Siku-Siku.Com Oct 19 '12 at 14:04