
04/06/2011, 09:14
|
 | | | Fecha de Ingreso: enero-2008 Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 17 años, 1 mes Puntos: 260 | |
Respuesta: No me sube imagen Hola,
Posiblemente porque no estas enviando el archivo, Cita:
Iniciado por Jota_sk // Enviamos el formulario usando AJAX
$.ajax({
type: 'POST',
url: $(this).attr('action'),
data: $(this).serialize(),
// Mostramos un mensaje con la respuesta de PHP
success: function(data) {
$('#result').html(data);
} For a form element's value to be included in the serialized string, the element must have a name attribute. Data from file select elements is not serialized. http://api.jquery.com/serialize/
Saludos, |