function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
New_DeveloperNew_Developer 

Help with hover on an image on visualforce page

I need help with hovering over an image which shows the list of values from the <apex:repeat> tag: I want the values from the code in the bold below to be shown when i hover over an image something like help bubble(?).

Here is my code

<apex:repeat value="{!dpgEnrollmentGuidelines}" var="dpGuideline" >
                 
                    <tr>
                       <td class= "changecolor">
                            <apex:outputText value="{!dpGuideline.Required_for__c}"/>
                        </td>
                       
                        <td onclick="navigateToElement('{!dpGuideline.Id}');">
                        <apex:outputText value="{!dpGuideline.Display_Name__c}"/>
                            <apex:repeat value="{!dpGuideline.Acceptable_Documents__r}" var="accdoc" >
                   <apex:outputText value = "{!accdoc.Acceptable_doc__Name__c}"
                        </apex:repeat> 

                                                </td>
                         
                           </apex:repeat>

Thanks
Shashikant SharmaShashikant Sharma
Hi,

You could use the Attribute Title for showing tooltip.

title : The text to display as a tooltip when the user's mouse pointer hovers over this component.

Like
<apex:outputText title="Tool Tip for Control" value = "{!accdoc.Acceptable_doc__Name__c}"

Thanks
Shashikant