[eluser]oursteps[/eluser]
Thanks CroNIX.
I tried it like this:
Code:
[removed]
$(function(){
$('.auto-submit-star').rating({
callback: function(value, link){
var abc = $(this).parent().siblings("#vedio_url").text();...
and the HTML:
Code:
<?php $i=1; if(isset($records)) : foreach($records as $row) : ?>
<tr>
<td id="vedio_url"><?php echo $row->url; ?></td>
<td><?php echo $row->sitename; ?></td>
<td><?php echo $row->tag; ?></td>
<td>
<input class="auto-submit-star" type="radio" name="rating<?php echo $i;?>" value="1"/>
<input class="auto-submit-star" type="radio" name="rating<?php echo $i;?>" value="2"/>
<input class="auto-submit-star" type="radio" name="rating<?php echo $i;?>" value="3"/>
<input class="auto-submit-star" type="radio" name="rating<?php echo $i;?>" value="4"/>
<input class="auto-submit-star" type="radio" name="rating<?php echo $i;?>" value="5"/>
</td>
</tr>
It works now