hola:
en esta pagina:
http://www.oniricosistemas.com.ar/pr...ules=portfolio
tengo armado un js para que al pulsar sobre algun nº me cargue una imagen, todo anda bien salvo que cada vez que se hace click en un nº y carga la imagen correspondiente la pagina se sube sola, y no logro entender porque sucede.
Alguien me podría decir que estoy haciendo mal?
el js es:
Código javascript
:
Ver original$(".thumb a").click(function(){
var imgHref = $(this).attr('title'); //get the src of the thumbnail
$(".thumb a").removeClass("selected"); //remove .selected class from all other links
$(this).addClass("selected"); //add .selected class to current link
$(".big").stop();
$(".big").stop().fadeTo(700, 0, function() { //fade image out
$('.big').attr('src', imgHref ); //give new image a src attribute
$('.bighref').attr('href', 'big/' + imgHref );
}).fadeTo("slow", 1); //fade the image in
},$(".thumb a").mouseout = function(){ //for onmouseout not used here
});
$(".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
});
o si conocen alguna mejor forma de hacerlo...
saludos y desde ya muchas gracias