You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! We need tooltips and clickable links within the menu item headings, can this be achieved? Something like:
<li>This menu item will give a tutorial about <a href="https://www.youtube.com" class="special" title="Click link to visit Youtube">youtube</a></li>
There might be also rich text tooltips (generated by javascript something like tipped https://github.com/staaky/tipped) so there might be also class attributes involved.
Currently the problem is that the whole menu item is rendered as a link anchor <a...> is this necessary, maybe the list item could simply have a click listener instead and it would not bubble from link within the title itself?
The text was updated successfully, but these errors were encountered:
<liclass="data-nav-custom-content"><div>This menu item will give a tutorial about <ahref="https://www.youtube.com" class="special" title="Click link to visit Youtube">youtube</a></div></li>
Don't forget that div wrapper, it won't work otherwise.
Hi! We need tooltips and clickable links within the menu item headings, can this be achieved? Something like:
<li>This menu item will give a tutorial about <a href="https://www.youtube.com" class="special" title="Click link to visit Youtube">youtube</a></li>
There might be also rich text tooltips (generated by javascript something like tipped https://github.com/staaky/tipped) so there might be also class attributes involved.
Currently the problem is that the whole menu item is rendered as a link anchor <a...> is this necessary, maybe the list item could simply have a click listener instead and it would not bubble from link within the title itself?
The text was updated successfully, but these errors were encountered: