У меня следующая проблема. У меня есть страница команды, подобная этой: маленькие кружочки внизу. У кого-нибудь есть идеи?
$(".imgDiv").mouseover(function(){ $(this).children(".hiddenImgDiv").show(); }).mouseout(function(){ $(this).children(".hiddenImgDiv").hide(); });
Скрыть дополнительную информацию через CSS (display:none) и переключать ее при наведении курсора. Sth, как:
display:none
$('.elementWithExtra').hover(function(){ $(this).children('.extra').toggle(); }, function(){ $(this).children('.extra').toggle(); });
См .: http://api.jquery.com/hover/ и http://api.jquery.com/toggle/