Tema: jQuery hover
Pogledajte određenu poruku
Staro 31. 08. 2008.   #6
pkrstic
profesionalac
Qualified
 
Avatar pkrstic
 
Datum učlanjenja: 06.09.2007
Lokacija: Zrenjanin
Poruke: 109
Hvala: 21
11 "Hvala" u 11 poruka
pkrstic is on a distinguished road
Default

$('div.kontejner').hover(
function() {if (!$(this)._hover) { $(this)._hover=true; $('div', this).fadeIn(); } },

function() { if ($(this)._hover) { $(this)._hover=false; $('div', this).fadeOut(); } }
);
pkrstic je offline   Odgovorite uz citat