Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link type="text/css" href="../libs/css/ui-lightness/jquery-ui-1.8.18.custom.css" rel="stylesheet" />
<script type="text/javascript" src="../libs/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="../libs/js/jquery-ui-1.8.18.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$( "#accordion" ).accordion();
});
$(document).ready(function(){
$('#mod').click(function(){
var iden = $('#identificador').val();
sendValue($('#hiden').val());
});
});
function sendValue(str){
$.post("ajax.php",{ sendValue: str },
function(data){
$('#display').html(data.returnValue);
}, "json");
}
</script>
</head>
<body>
<?php
$dom = new DomDocument;
$dom->preserveWhiteSpace = FALSE;
$dom->load('../XML/Categorias.xml');
$params = $dom->getElementsByTagName('categoria'); // Find Sections
$k=0;
?>
<div style="width:200px; height:700px; float:left;">
<form id="form1" name="form1" method="post" action="add_categoria.php?accion=1">
<p>Agregar Nueva Categoria(Max16char):</p>
<label for="nombre">Nombre</label>
<input name="nombre" type="text" id="nombre" maxlength="16" />
<input type="submit" value="Agregar" />
<input type="reset" value="Limpiar" />
</form>
</div>
<div style="width:700px; height:700px;">
<table width="498" height="43" border="1">
<?php foreach ($params as $param){?>
<tr>
<td width="334">
<?php
echo "Categoria:".$params->item($k)->getAttribute('nombre');?>
</td>
<td width="71"><a id="mod" href="#" >Modificar</a>
<input id="hiden" type="hidden" value="<?php echo $params->item($k)->getAttribute('nombre');?>">
</td>
<td width="71"><a href="delete_cat.php?nombre=<?php echo $params->item($k)->getAttribute('nombre');?>" >Eliminar</a></td>
</tr>
<?php
++$k;
}
?>
</table>
</div>
<label for="txtValue">Enter a value : </label>
<input type="text" name="txtValue" value="" id="txtValue">
<div id="display"></div>
</body>
</html>
y quiero hacer q al ejecutar mi codigo jquery este tome el valor del id real del hidden lo q pasa es q siempre keda con el ide hiden :S como haria para q sea variable y llamarlo desde javascript