Hi all,
In case topic is still relevant or someone is looking for these functions, here's small workaround:
Depending of LS version, one could easily use Jquery UI tools already included in LS with a bit of js in text source.
f.i. to apply "mouseover" - quess it's a simple Tooltip just use
Code:
<span data-toggle="tooltip" title="your message on moseover">your text</span>
in any desired place displayed (question / answer option / subquestion e.t.c.)
By default "tooltips" are not activated in LS, so it's required to add js code to appropriate text source to activate it
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Depending on the template used (in case default tooltip styling is missing), some additional styling code like
Code:
<style type="text/css">
.ui-tooltip {
padding: 8px;
position: absolute;
z-index: 9999;
max-width: 300px;
}</style>
might be helpfull
for additional capabilities check
Jquery UI
examples and manuals
same way you could try other tools from Jquery UI
As for LS 3+, it includes Bootstrap, so a lot of boostrap features could be implemented too, almost the same way
an example survey with tooltip for LS 2.6.6 attached (default template used)