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
- April 22, 2016 @ 14:32:37 [Current Revision] by admin
- April 22, 2016 @ 14:32:37 by admin
No comments yet.