Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/10/2009, 06:01
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: Ayuda para script - activar-desactivar links en menu

Cita:
function botonera() {
// la botonera es una lista
botonera = $("#menu li a");

jQuery.each(botonera, function() {

$(this).click( function (){


activo.removeClass('activo'); // quito atributos al boton activo
activo = $(this); // declaro cual es el nuevo activo
activo.addClass('activo'); // atribuyo estilo al boton activo

return false;

})};

botonera();
Para que esto funcione, tiene que existir desde siempre un boton activo. Sino, hay que usar otras variables.