need your help.I want to write some JSTL code like <C:IF>
in ajax but it doest not work
function myfunction(cd){
$("#datatable tbody").empty();
$.ajax({
url :'/KurirCC/management-user-by-request.html',
cache :true,
data :{"kode":cd},
dataType :"json",
type : "GET",
contentType : "application/json; charset=utf-8",
success : function(jsondata){
$.each(jsondata.data,function(i,obj){
var status = obj.sts;
tableHtml ="<tr> <td>"+ obj.id_mobile + "</td> <td>" + obj.nama +"</td> <td>"+ obj.username +"</td> <td>"
+ obj.kota + "</td> <td><c:if test="${status == 1}">Aktiv</c:if></td><td align='center'><button type='button' class='btn tom-history' title='History' ></button></td> </tr>";
$(tableHtml).appendTo('#datatable tbody');
});
}
});
}
this code <td><c:if test="${status == 1}">Aktiv</c:if></td>
not work,
where the problem lies?