$(document).ready(function () { $("#icont").mouseover(function () { $('#icont').html($('#cont2').html()); }).mouseout(function () { $('#icont').html($('#cont1').html()); }); $('#test').hover(function () { if ($('#stext').is(':hidden')) { $('#stext').show('slow'); $('#test img').hide('slow'); } else { $('#stext').hide('slow'); $('#test img').show('slow'); } }) })
Very twitching when hovering.