jQuery: Div-A blinker ved load ind i div-B
Hej,Jeg bruger jQuery til at loade noget indhold ind i div'en #newsIndhold:
$('#newsIndhold').load('pages/forside/hentBilleder.php?sid='+Math.random(),
function(){
$("div.kommentarThumbs a img").hoverIntent( $config );
}
);
Når jeg hover over elementet "div.kommentarThumbs a img" (der ligger i #newsIndhold) skal indholdet fra hentThumb.php blive loadet ind i div'en #thumbHover:
var $thumbOver = function(imgSrc){
$('#thumbHover').load('pages/forside/hentThumb.php');
$('#thumbHover').fadeIn();
}
var $thumbOut = function (){
$('#thumbHover').fadeOut();
}
var $config = {
over: $thumbOver(this),
out: $thumbOut
};
Samtidig med, at indholdet fra hentThumb.php bliver loadet ind i #thumbHover blinker #newsIndhold en enkelt gang.
Jeg ønsker altså at slippe af med det kortvarige blink/refresh af #newsIndhold.
Håber I kan hjælpe!
På forhånd tak!