$(document).ready(function () {$('.gostisce').hover(function(){ $(this).toggleClass('gostisce-hover'); });}
When i hover over upper images, i have a half a sec delay of image not showing (it's from other class i use jquery toggleClass).
Appears only first time, once the images get downloaded it works fine OFC.
What can i do to fix this?
Thanks for tips.
$(document).ready(function () {
$('.gostisce').hover(function(){
$(this).toggleClass('gostisce-hover');
});
}
Will try sprites.
Thanks for help!