Halo! I'm new to JQuery and I'm trying to make simple tooltip with QTip. I'm sure that I already follow the steps right but the tooltip doesn't seem working. Here's the code:
<script type="text/javascript">
$(document).ready(function() {
$('.select-here').qtip({
content: {
text: 'tooltip here',
show: 'mouseover',
hide: 'mouseout'
},
style: {
width: 400,
height: 400
}
});
});
</script>
And in the body i wrote this
<div class="select-here">Text text text</div>
Did I miss something? Anyone can help me with this? Thank you