jQuery – Get & format HTML tags from a simple string

I have a String variable say

strHTML = "<div class='abc'> This is a test <span class='xyz'> String </span> </div> "

that i m receiving from server. When I use

$('#container').append(strHTML);
or
$('#container').text(strHTML);

it is displaying the whole string including HTML tag in "container".

What i want is to take each HTML tag as HTML element in "Container" & apply class whever i defined in it..

 

Here is the solution i used to solve the issue:
I use another function, it is the function html(), it worked ^^
$("#container").html(strHTML);

Revisions

No comments yet.

Leave a Reply