He intentado de esta forma
Código Javascript
:
Ver original<table width="100%">
<form id="busq" name="busq">
<tr>
<td>MARCA</td>
<td>MODELO</td>
<td>SERIAL</td>
<td>OBSERVACIONES</td>
</tr>
<?
foreach ($row as $datos) {
?>
<tr>
<td><input type="text" class="form" id="marca" name="marca" value="<? echo $datos['marca']; ?>" disabled="disabled" /></td>
<td><input type="text" class="form" name="modelo" value="<? echo $datos['modelo']; ?>" disabled="disabled" /></td>
<td><input type="text" class="form" name="serial" value="<? echo $datos['serial']; ?>" disabled="disabled" /></td>
<td><input type="text" class="form" name="observaciones_h" value="<? echo $datos['observaciones_h']; ?>" disabled="disabled" /></td>
<? } ?>
</table>
<br />
<br />
<div align="center"><button id="activar" type="button">Modificar</button></div>
<script>
jQuery("#activar").click(function () {
jQuery(".form").removeAttr("disabled").focus().val("Ahora si lo puedes editar");
});
</script>
Pero tampoco me ha funcionado :/