My tooltips seem to work just fine in firefox. They appear in IE and Safari as well but when you roll over a field and the tooltip appears it causes other elements to disapear. I have title properties set in several td's and i'm using a property tip='Y' in those as my trigger. I'm only having this issue in tables. I have not experienced this with text boxes and other elements that have tooltips.
Here is my js:
$("[tip='Y']").tooltip({
position: "center right",
offset: [0, 10],
opacity: 0.8,
effect: "fade",
delay: 1,
tipClass: 'formTips'
});
and my css:
.formTips {
background-color:#000;
border:1px solid #fff;
padding:10px 15px;
max-width:200px;
display:none;
color:#fff;
text-align:left;
font-size:12px;
-moz-box-shadow:0 0 10px #000;
-webkit-box-shadow:0 0 10px #000;
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
}
Any ideas? Has anyone else experienced their toolips effecting the display of other elements? Thanks!
Here is my js:
$("[tip='Y']").tooltip({
position: "center right",
offset: [0, 10],
opacity: 0.8,
effect: "fade",
delay: 1,
tipClass: 'formTips'
});
and my css:
.formTips {
background-color:#000;
border:1px solid #fff;
padding:10px 15px;
max-width:200px;
display:none;
color:#fff;
text-align:left;
font-size:12px;
-moz-box-shadow:0 0 10px #000;
-webkit-box-shadow:0 0 10px #000;
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
}
Any ideas? Has anyone else experienced their toolips effecting the display of other elements? Thanks!
