I have a table with column: question and answer, i want, when i hover mouse on question the associative answer will display. I did this:
<div id="question">
<?php echo CHtml::encode($data->getAttributeLabel('ques')); ?>:
<?php echo CHtml::encode($data->ques); ?>
</div>
<div id="answer" style="display:none">
<?php echo CHtml::encode($data->getAttributeLabel('ans')); ?>:
<?php echo CHtml::encode($data->ans); ?>
</div>
<?php
Yii::app()->clientScript->registerScript('show', "
$('#question').hover(function(){
$('#answer').toggle();
});
");
?>but it only toggles the first data, others are not showing. Please help me. Again Thanks alot. <tanim>

Help













