Tooltips for Image Control

Is there a way to add tooltips for the image control like the example below?

image

Hi @COR6603.

Add a class to the image control such as "img1tooltip" for example as shown below in Plumsail Designer.
image

Then in JS editor add the following code:
fd.spRendered(function () {

$('.img1tooltip').attr('title', 'This is a map of the world!');

});

Your result will look like this on hover of the image:
image

1 Like

Works great! Thank you!

1 Like