Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jquery hover out Re: jquery hover out

#68668
vezzo
Member

thanks a lot.

i’ve tried your idea but it’s not working. since i cant set the image as a background ’cause i get the path from wordpress.

i’ve done something like that:

Code:
$j(‘#wrapper_superouter #wrapper_outer #wrapper_inner #wrapper #bg_page #content #persone #persona img.Eugenia-Grazioli’)
.hover(
function(){
$j(‘#wrapper_superouter #wrapper_outer #wrapper_inner #wrapper #bg_page #content #persone #persona #testo.Eugenia-Grazioli’).stop(true, true).fadeIn(100);
},
function(){
$j(‘#wrapper_superouter #wrapper_outer #wrapper_inner #wrapper #bg_page #content #persone #persona #testo.Eugenia-Grazioli’).stop(true, true).fadeOut(100);
});

in firebug i can see then property of the paragraph, in this case the Div #testo, change correctly, but i cant see them in the browser ’cause the img is always there. I’ve tried to combine my old script with yuors but as a result i get the image flickering when i’m hover it.

thanks a lot

Fede