Tema: efecto raro
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/11/2009, 13:02
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 1 mes
Puntos: 101
Respuesta: efecto raro

Yo hago eso mismo pero escribiendo siempre return false al final de las funciones click:
Cita:
$(".thumb2 a").click(function(){
var imgHref = $(this).attr('title'); //get the src of the thumbnail
$(".thumb2 a").removeClass("selected"); //remove .selected class from all other links
$(this).addClass("selected"); //add .selected class to current link
$(".big2").stop();
$(".big2").stop().fadeTo(700, 0, function() { //fade image out
$('.big2').attr('src', imgHref ); //give new image a src attribute
$('.bighref2').attr('href', 'big/' + imgHref );

}).fadeTo("slow", 1); //fade the image in
},$(".thumb2 a").mouseout = function(){ //for onmouseout not used here
return false;

});