Hello,
I am designing a website, and I just inserted the vertical scrollable function. Each item of the scrollable contains code like:
I now want to insert the tooltip function so that within the scrollable function, the tooltip appears on the links.
both of them work separatly, but when I inlude one in the other or the other in one, the tooltip doesn't function anymore.
I have tried something like:
but it doesn't work ...
Is there any tip somewhere that I don't know ?
Thanks for your help
I am designing a website, and I just inserted the vertical scrollable function. Each item of the scrollable contains code like:
<span>hello</span>
<span><a href="go.html" title="here we go">let's go</a></span>
I now want to insert the tooltip function so that within the scrollable function, the tooltip appears on the links.
both of them work separatly, but when I inlude one in the other or the other in one, the tooltip doesn't function anymore.
I have tried something like:
<div class="scrollable vertical">
<div id="idToolTipItems">
<div id="idDivResults" >
<span>hello</span>
<span><a href="go.html" title="here we go">let's go</a></span>
</div>
</div>
</div>
<div id="idToolTip"> </div>
<script>
$(document).ready(function() {
$("#idToolTipItems a[title]").tooltip('#idToolTip');
});
but it doesn't work ...
Is there any tip somewhere that I don't know ?
Thanks for your help
