I take data with post method now I need to display html into page here is code:
function(data,status){
$("#ul1").text(data);
});
This will show <li></li>
tags inside ul like text not like html how can I show data as html?
I take data with post method now I need to display html into page here is code:
function(data,status){
$("#ul1").text(data);
});
This will show <li></li>
tags inside ul like text not like html how can I show data as html?