Hi Team
I need some help, i have a form and its working fine. I only need some help, when i select user details after search. their details from form when i mouse hover i must be able to see user email detail. Kindly please assist and thank you.
Select People and Groups
-
All Users [0]
-
Active Directory [0]
-
Organization [0]
Details
Display Name
E-mail Address
Title
Department
Presence
Work Phone
Location
Jignesh KumarPosted Mar 4, 2024, 8:28 AM
Hello,
Please change here in this function,
Mithilesh TataPosted Mar 4, 2024, 8:25 AM
To display the user's email address when hovering over their details in the modal form, you can use the
titleattribute of the HTML elements to show the email address as a tooltip. Here's how you can modify your script to achieve this:This script will attach a mouseenter event listener to the table cells () within the user table (
#userTable). When the mouse enters a table cell, it will retrieve the email address associated with that cell's data and set it as the title attribute of the cell. This will display the email address as a tooltip when hovering over the cell.Make sure to place this script block after your existing script block within the
tags in your HTML code.With this modification, when you hover over any user's email address in the modal form, you should see their email address displayed as a tooltip.