Ok, pero el código no funciona:
Código Javascript
:
Ver original<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<title>mi bug</title>
</head>
<script type="text/javascript" >
$("#formulario").submit(function(e){
e.preventDefault();
$.ajax({
url: $(this).prop("action"),
data: $(this).serialize(),
success: function(response){
$("#contenido").val(response);
}
});
});
$("#salida").blur(function(){
$("#formulario").trigger("submit");
});
</script>
<body>
<form id = "formulario" action = "ins1_avisos.php">
<table width="79%">
<tr>
<th scope="col" width="57">Teléfonos</th>
<th scope="col" width="52"><input name="telefonos" id="telefonos" type="text" size="9" maxlength="9"/></th>
<th scope="col" width="46">Nombre</th>
<th scope="col" width="88"><input name="name" id="name" type="text" size="35"/>
</th>
<th scope="col" width="46">Apellidos</th>
<th scope="col" width="403"><input name="apellidos" id="apellidos" type="text" size="20" /></th>
<th scope="col"><textarea id = "salida"></textarea></th>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<div id="contenido"></div>
</body>
</html>
Y así ?
Código Javascript
:
Ver original<script type="text/javascript" >
$(document).ready(function(){
//insertando input por Jquery
$('textarea').live('blur', function() {
$("#formulario").trigger("submit");
});
})
</script>