Thank you very much - it worked like charm.
I'll try to understand every step of the way :)

On Sep 27, 7:00 pm, diego valobra <[EMAIL PROTECTED]> wrote:
> Ifixer try this
>
> $('a.view').css('opacity',0.33);
> $('a.view').hover(function() {
>         $(this).stop().animate({
>             opacity : 1
>         }, 600);
>     },
>     function(){
>         $(this).stop().animate({
>             opacity : 0.33
>         }, 800);
>
> });
>
> Diego Valobra
>
> --- Sab 27/9/08, eewan <[EMAIL PROTECTED]> ha scritto:
> Da: eewan <[EMAIL PROTECTED]>
> Oggetto: [jQuery] mouseover / mouseout
> A: "jQuery (English)" <jquery-en@googlegroups.com>
> Data: Sabato 27 settembre 2008, 16:59
>
> Hey guys,
> I have problem and my programmer isn't around to help me :(
> Look at main page:http://www.mycitysolutions.com/
>
> I used $('a.view').fadeTo('fast', 0.33) to fade out images on
> load and
> $('a.view').mouseover(function () {
> $(this).fadeTo('normal', 1);});
>
> $("a.view").mouseout(function () {
> $(this).fadeTo('normal', 0.33);
>
> });
>
> to make them change opacity on image hover. But if you try numerous
> times to run trough image animation will take some time :D
> So i need some event listener or ... how do i solve this so it repeats
> normally :)
>
> Thx in advance
>
> __________________________________________________
> Do You Yahoo!?
> Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto 
> spazio gratuito per i tuoi file e i messaggihttp://mail.yahoo.it

Reply via email to