Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/10/2012, 05:20
underwebinfo
 
Fecha de Ingreso: septiembre-2012
Ubicación: Buenos aires
Mensajes: 110
Antigüedad: 11 años, 7 meses
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


})
>>