$('#test_div').click( function() {
$.ajax({
type: "POST",
dataType: "html",
url: "test_ajax.php",
data: "id="+id,
success: function(data){
$('#tab_detail').html(data);
}
});
});
$.ajax({
type: "POST",
dataType: "html",
url: "test_ajx.php",
data: "id="+id,
success: function(data){
$('#tab_detail').html(htmlDecode(data));
} });
function htmlEncode(value){
return $('<div/>').text(value).html();
}
function htmlDecode(value){
return $('<div/>').html(value).text();
}
Sign up here with your email