I am trying to add value using javascript on div. but when I try this It is not working. onclick function not working. can any one please help me, when I put the follow even onclick function also not working.
function handler(var1, quizId, isCorrect, score, questions) {
alert(var1);
//var id = parseInt(quizId);
document.getElementById('questions').innerHTML = questions;
quizId++;
var points = 10;
if (isCorrect == 'true') {
score = score + points;
var string_url = "quiz.php?qusId=" + quizId + "&score=" + score + "&questions=" + questions;
setTimeout(function() {
window.location = string_url
}, 5000);
}
else {
var string_url = "quiz.php?qusId=" + quizId + "&score=" + score + "&questions=" + questions;
setTimeout(function() {
window.location = string_url
}, 5000);
}
}
<body>
<?php
$qusId=$_GET['qusId'];
$passscore=70;
$name=$_POST['name'];
if(isset($_GET['score'])){
$score=$_GET['score'];
}
else{
$score=0;
}
?>
<form action="test.php" method="POST">
<?php
$result = select("SELECT * FROM questions WHERE question_id='$qusId'");
//$row = mysql_fetch_array($result);
?>
<?php
$i=$_GET['qusId'];
if($qusId<11){
while($row = mysql_fetch_array($result))
{
?>
<table width="581" height="175" border="0" align="center">
<tr>
<td><h4><?php echo $i.'.' .$row['questions']; ?></h4>
<?php $i++; ?>
</td>
</tr>
<tr>
<td>
<?php $qId=$row['question_id'];?>
<?php
$result1=select("SELECT * FROM answers WHERE questionId='$qId' ORDER BY RAND()");
while($row1=mysql_fetch_array($result1)){
?><input type="radio" name="answers" value="<?php echo $row1['answers'];?>" onclick="handler('<?php echo $row1["feedback"]; ?>',<?php echo $qusId;?>,'<?php echo $row1["isCorrect"]; ?>',<?php echo $score;?>,'<?php echo $row["questions"];?>')
"/ ><?php echo $row1['answers']; ?><br/>
<?php
} ?>
</td>
</tr>
</table>
<p>
<?php
}
}
else{
?>
</p>
<p>
<table>
<tr><td>
Your Score:<?php echo $score;?><br/><br/>
Pass Score:<?php echo $passscore;?><br /><br/>
<?php if($score>=$passscore){?>
Result:Congratulation! You Have passed the questionnaire.<br/><br/
<?php }else{ ?>
Result:Sorry! Please <a href="/uaquiz/index.php">Try again</a><br/>
<?php } ?>
</p>
</td></tr>
<tr><div id="questions"></div>
</table>
<?php
}
?>
</form>
</body>
document.getElementById('questions')returnsnull. – ahren Sep 26 '12 at 4:25