Alexis, no he dudado de tu código sino del mio. Es que no me funciona, escribo algo en el textarea y no hace nada. La tabla es para el ejemplo. Gracias por tu consejo.
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").html(response);
}
});
});
$("#salida").blur(function(){
$("#formulario").trigger("submit");
});
</script>
<style>
.carga1{
cursor:pointer;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;background-repeat: no-repeat;background-position:center;background-size:30%;background-color:rgba(0,0,0,0.5);width:300px;color:#fff;text-align:center;height:100px;padding:52px 12px 12px 12px;position:fixed;top:30%;left:40%;z-index:6;
}
</style>
<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" class="carga1"></div>
</body>
</html>