03/10/2012, 05:20
|
| | Fecha de Ingreso: septiembre-2012 Ubicación: Buenos aires
Mensajes: 110
Antigüedad: 12 años, 1 mes Puntos: 9 | |
Respuesta: aprendiendo ventanas modals << $.ajax({
async:true,
type:"POST",
dataType:"html",
contentType: "application/x-www-form-urlencoded",
beforeSend: function(){
Contenedor.val('<img src="Imagenes/Loading.gif" width="25" height="25" />Cargando...');
},
url:"Include/Slide_Content.php",
data:"id="+Valor,
success: function(data){
Contenedor.html(data);
},
error: function(){
alert('A surgido un error! :O \n Volve a intentarlo más tarde');
},
timeout:4000
})
>> |