Hi,
Here I have an array returned that is returned in responseText from the server. Based on the output that is returned by the server I have to dynamically create a checkbox.
Somebody please help me??
I was trying to use document.create Element() but it did not work.
Thanks
Here I have an array returned that is returned in responseText from the server. Based on the output that is returned by the server I have to dynamically create a checkbox.
Code:
function StateChanged() {
if(xmlHttp.readyState == 4) {
xyz=xmlHttp.responseText;
if(xyz!="false") {
alert("true");
Here I have to add a function to create a checkbox
}
}
}
I was trying to use document.create Element() but it did not work.
Thanks
Comment