Hi @Kevin Worthington ,
I tested it against your description and it is as you described. When the Description column is undisplayed in the sharepoint list view, the text of the hover description column does not display properly.Because the description column is not found in the current view, so it shows an exception. This is a known limitation of SharePoint JSON formatting.
For SharePoint Online Modern Page, it is necessary to install React Script Editor Web Part to customize description tooltip for hyperlink field using Jquery.
Add The Script Editor Webpart back to SharePoint Modern Experience
Then find the hyperlink field CSS class using Browser Developer Tool:
Then update the title arrtibute using Jquery, title attribute is the hover tooltip text for hyperlink field:
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script type="text/javascript">
$(function() {
setInterval(function(){
$("a.urlField_48326872:eq(0)").attr("title","test0")
$("a.urlField_48326872:eq(1)").attr("title","test1");
}, 100);
});
</script>
The hyperlink field CSS classn "a.urlField_48326872" should be different with yours, please check it using Browser Developer Tool as suggested above.
Paste into React Script Editor Web Part in Modern Page:
Save and publish the page,then the hover tooltip will change when mouse hover:
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.