Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/01/2012, 12:38
Avatar de tomymolina
tomymolina
 
Fecha de Ingreso: noviembre-2010
Mensajes: 50
Antigüedad: 14 años, 1 mes
Puntos: 1
Respuesta: Problema con autocomplete de jQuery

Arreglado;
Código:
		var myArr = new Array();
		$($(".subscription-title")).each(function(index) {
			myArr[index] = $(this).text();
		});

		
		 $("#formAddInput").autocomplete({
            source: myArr
         })