Frank,
Can you elaborate a little bit or post what you have?

Sounds like what you need to do, assuming once the user clicks on the image2
that the rollover disappears, is something like:

$('#myimg').hover(function(){
$(this).attr('src','image2');
},
function(){
$(this).attr('src','image1');
})
.click(function(){
$(this).unbind('hover'); // not sure if this one is correct;
});

On 8/10/07, Frank <[EMAIL PROTECTED]> wrote:
>
>
> I am not sure if anyone can solve this problem, however, I am trying
> to keep the rollover image2 if the user clicks on image2. However on
> mouseout, it reverts back to image1. I have tried different coding and
> I am tripped up everytime.
>
> Frank
>
>


-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com

Reply via email to