Hello,
Is there a way to set multiple triggers for a tooltip without having to manually do event handlers? Something like this:
$("#tooltip-icon").jqxTooltip({
content: 'Hello, World!',
position: "right",
width: 250,
trigger: ['hover', 'click'],
});
The reason I want to do this is because of mobile devices. Seeing that there’s no hover for someone using a touch-device, it would be nice to have a tooltip display for any number of events, in this case, ‘hover’ and ‘click’. This way, they could just tap the tooltip-icon element and see the tooltip.
Regards,
Fritz