I have a PHP-generated list:
<?php $row_number = 0;
while ($row = $result->fetch_object()) {
$row_number++;
$movie_id = $row->movie_id;
$title = $row->title;
if ($num_rows>0){ ?>
<p class='dragelement' id="<?php echo $movie_id; ?>">
<?php echo $title; ?>
</p>
<?php }
} ?>
and am trying to pass the variable 'movie_id' to jQuery for a drag-and-drop function using the id of the parent p selector:
var parent = $("p.dragelement").closest('p');
var movie_id = parent.attr('id');
The problem is that the resulting value of 'movie_id' is the first one of the list, not the current one.
Any ideas much appreciated!