Hello friends
In my form I am using two AJAX functions..
Both are working fine...
Problem is both are displying in one place..I want to display it in different locations...
I used
<div id="txtHintGrade"></div>
<div id="txtHint"></div>
txtHindGrade for first
document.getElementById("txtHindGrade").innerHTML=xmlHttp.responseText;
<span id=\"txtHindGrade\"></span>
and
txtHint for the second
document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
<span id=\"txtHint\"></span>
Both are displaying in one place where txtHint is given
please help
thanks