I am using jQuery to call a php page (via ajax) that goes to my server to grab some data. The data is then encoded to json and returned to the page. I am then parsing the json with jQuery. I am having a problem displaying html items that are getting returned. In the json object the piece of data in question is a value to a "description" key. The json gets returned as below:
{ "description" : "Check the Wiki article to see what states require Two-Party Notification. (<a href="http://intranet.clickmotive.com/Wiki/Call%20Recording%20-%20Two%20Party%20Notification%20States.ashx" target="_blank">wiki link</a>)" }
Then i use a simple function that i found on here to decode the html. Then function i'm using is this (i pass the value of the above key through to this function):
function htmlDecode(value){
return $('<div/>').html(value).text();
}
This decodes the text it to be as follows:
Check the Wiki article to see what states require Two-Party Notification. (<a href="http://intranet.clickmotive.com/Wiki/Call%20Recording%20-%20Two%20Party%20Notification%20States.ashx" target="_blank">wiki link</a>)
This is how i am adding it to the page: (where the 'description' variable is being set from the json data)
$("#description").append(htmlDecode(description));
My problem is that it is displaying the full html as text and not as html. So, there is no link being created. What is my problem with this code? I must be missing something. Let me know if you have any questions! Thanks!
$("#description").append(description);? – Teneff Oct 19 '11 at 8:33