<table>
<?php foreach($data as $key=>$value):?>
<tr id="id_<?php echo $value['id']; ?>">
<td><a href="#" rel="edit_order" id="<?php echo $value['id']; ?>" ><?php echo $value['var1']; ?></a></td>
<td><?php echo $value['var2']; ?></td>
<td><?php echo $value['var3']; ?></td>
</tr>
<?php endforeach; ?>
</table>
$('a[rel=edit_order]').live("click", function(){
var id=$(this).attr('id');
var order_status = $("tr[id='id_"+id+"']").find("td[class=order_status]").text();
var order_comment = $("tr[id='id_"+id+"']").find("td[class=order_comment]").text();
order_modal.find("input[name=edit_id_order]").val(id);
order_modal.find("input[name=order_status]").val(order_status);
order_modal.find("textarea[name=order_comment]").val(order_comment);
});
setTimeout(refresh_news, 60000); //каждую минуту
function refresh_news(){
$.ajax({
type: "GET",
cache: false,
dataType : 'html',
url: "load_logs.php?sid=<? echo $sid; ?>&hash=<? echo $hash; ?>&last_id=" + last_news_id,
success: function(html)
{
var audio = new Audio();
var logs = $("#logs").html();
if(html == logs){
}else{
$("#logs").html(html);
// document.getElementsByTagName('audio')[0].play();
}
}
}