ajax code-
...
xmlhttp.open("GET","voting.php?qid="+qid+", uid="+uid+", type="+type,true);
...
is this the correct way to sent three parameters??
html-
<td ><img src="images/up.jpeg" style="border:none;" title="Like" onclick="doVote($q_id,$_SESSION['UserId'],up)"></td>
when I am clicking on this image ajax script is not working.where should I fire onclick function???