div loading is not proper while using ajax
Posted
by sadesh
on Stack Overflow
See other posts from Stack Overflow
or by sadesh
Published on 2010-01-08T14:08:09Z
Indexed on
2010/03/09
3:06 UTC
Read the original article
Hit count: 222
AJAX
i have to load a div with a list of check boxes using ajax. I have writen ajax code to fetch the string containing the list of check boxes.`
document.getElementById("roleCheckBoxes").innerHTML="";
$('#roleCheckBoxes').append(xmlhttp.responseText.toString());
the data are fetching properly but the display alone not reflecting the string which i gave instead it displays a the list of check boxes with all checked... can you help me in it..
© Stack Overflow or respective owner