El codigo
Código Javascript:
Ver original
$.ajax({ async:true, type: "POST", dataType: "html", contentType: "application/x-www-form-urlencoded", url:"mipagina.php", data:"numero=10", beforeSend:inicioEnvio, success:creadaEnc, timeout:4000, error:problemas }); return false; function problemas(id){ $("#"+id).text('Problemas en el servidor.');
Bueno, mi problema es q quiero pasar el valor de 'id' a la funcion. Probe poniendo
Código Javascript:
Ver original
$.ajax({ async:true, type: "POST", dataType: "html", contentType: "application/x-www-form-urlencoded", url:"mipagina.php", data:"numero=10", beforeSend:inicioEnvio, success:creadaEnc, timeout:4000, error:problemas('miId') });
Pero no funciono... tambien probe
Código Javascript:
Ver original
$.ajax({ async:true, type: "POST", dataType: "html", contentType: "application/x-www-form-urlencoded", url:"mipagina.php", data:"numero=10", beforeSend:inicioEnvio, success:creadaEnc, timeout:4000, error:problemas{id="miId";} });
Pero tampoco funciono.
Ojala puedan ayudarme
Desde ya Gracias