Ver Mensaje Individual
  #16 (permalink)  
Antiguo 08/02/2011, 05:23
combuilder
 
Fecha de Ingreso: agosto-2009
Mensajes: 101
Antigüedad: 15 años, 2 meses
Puntos: 0
Respuesta: Migrar funcion JavaScript a función jQuery

Cita:
Iniciado por marlanga Ver Mensaje
Código:
function cargaestados(selectDestino, aspDestino){
	var vv1 = $('#estado_e').html(); //$('#estado_e').val() si es un input/select/textarea
	var vv2 = $('#icono_e').html();
	var vlink = "../estados/listing.asp";
	var link=$('#link');
	if (link.length>0 && jQuery.trim(link.html())!="") {
		vlink = link.html();
	} 
	$.ajax(function(){
		url: aspDestino,
		data: 'estado_e='+vv1+'&icono_e='+vv2+'&link='+vlink,
		success: function(respuesta){
			$('#'+selectDestino).html(respuesta);
		}
	});
}


Vuelvo a subir el tema.

Estoy probando esta función, y me da error en data

Código:
        	$.ajax(function(){
		url: aspDestino,
		data: 'serie='+vv1+'&link='+vlink,
		success: function(respuesta){
			$('#'+selectDestino).html(respuesta);
		}
Me dice que falta ";"

¿no lo entiendo el porque falla!????