I want to make a table and for certain cells I want it to show tooltip when I hover them. I'm using QTip for the tooltip. But it doesn't work, the tooltip doesn't show when I hover to the cell area. It only shows when I hover to the left edge of the cell.
Here's the code
<script type="text/javascript">
$(document).ready(function() {
$('.ada').qtip({
content: {
text: 'toooooooooooooltippppppppp',
},
style: {
width:400,
height:400
}
});
});
</script>
and the html
<div class="november">
<div>
<table class="tabel-kalender">
<thead>
<tr>
<th class="ada" width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Senin</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;>Selasa</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Rabu</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Kamis</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Jumat</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Sabtu</th>
<th width="350" height="30" bgcolor="#CCCCCC" style="padding:15px;">Minggu</th>
</tr>
</thead>
<tbody>//row
</tbody>
</table>
</div>
and the css (i don't think it's related to it though)
.november {
width: 847px;
height: 591px;
}
.tabel-kalender {
font-size:20px;
border:thick 1px white;
background-color:#FFF;
color:#000;
}
Anyway, I have tried to make the same table with tooltip in another file (another html file contains the table only) and it works. Is it corresponding with the divs before? Anyone can help me with this?
Info: I'm using this table in web I build with impress.js
Thank you.