Ciao ragazzi sul mio blog utilizzo questo script:
codice:jQuery(document).ready(function(){ jQuery(".postbox").hover(function(){ tipinfo = $(this).find('.tipinfo'); var t = jQuery(this).position() + jQuery(this).width(); var leftto = t.left + jQuery(this).width()-30; tipinfo.css({ top: jQuery(this).position().top + jQuery(this).height() - 2 , left: leftto }); tipinfo.show(); //vedi tooltip }, function() { tipinfo.hide(); //nascondi tooltip }) });Il tooltip Funziona perfettamente con tutti i browser tranne che con IE. So che lo stato Hover sul browser di casa Microsoft non funziona, per questo chiedo il vostro aiuto. Esiste un hack per porre rimedio al problema ?codice:.tipinfo {border-radius: 3px 3px 3px 3px;color: #FFFFFF;display: none;position: absolute;width: 350px;z-index: 1000;} .bgbull {background: url(images/bgbulle.png) no-repeat scroll 0 0 transparent;height: 29px;line-height: 35px;padding-left: 50px;width: 308px;} .infob {background: none repeat scroll 0 0 #151515;border-bottom: 1px solid #151515;border-left: 1px solid #151515;border-right: 1px solid #151515;line-height:1.2em;padding: 5px;width: 296px;} .bgbullbottom {background: url(images/bgbullebottom.png) no-repeat scroll 0 0 transparent;height: 29px;line-height: 35px;padding-left: 50px;width: 308px;}
Vi sarei molto grato del vostro aiuto

Rispondi quotando