I would assume it's possible, but it was easier to do the hover. On click is not intuitive so it's really not as useful.
I would assume it's possible, but it was easier to do the hover. On click is not intuitive so it's really not as useful.
Aight, thanks!
I assume it's this script I have to change, tried lots of different things but I really can't get it to work.
Anyone who can push me into the right direction?
Code:<script type="text/javascript"> $(document).ready(function() { var origsrc = $("#productMainImage a img").attr("src"); $("#productAdditionalImages .additionalImages a img").hover( function () { $("#productMainImage a img").attr('src', this.src); }, function () { $("#productMainImage a img").attr('src', origsrc); } ); }); </script>
I've not had any complaints about this script. Sounds like either you haven't installed it correctly or it's conflicting with something already there. That you are talking about is what makes it work so if you change it - it will definitely not work.
Alright, thanks for your answer.
Also I have a problem with getting blurry alt images.
It seems like it enlargens up the thumbs.
Maybe it has to do with Image Handler? Or it somehow picks up the wrong files..
hmm...
yup, that's a problem when using image handler since it creates only the size need for each instance. Without image handler the script works better. A quandry for sure.