To make the nested tooltip widget working, you should either:
- Set the nested tooltip to have a specific option to enable sticky or overlay;
- or:
- Set the nested tooltip to be triggered by an event other than the onmouseover event.
For example, instead of <b onmouseover="tooltip.ajax(this,'test.html')">Click Me</b>, you can write it as:
<b onclick="tooltip.ajax(this,'test.html', {sticky:true})">This is a nested tooltip</b>