MyMelody Posted April 11, 2019 Report Share Posted April 11, 2019 I want to remove the "View Details row number %" in my Results Page when I hover the mouse in the View Details Link. How can I get rid of it? Thanks in advance. Quote Link to comment Share on other sites More sharing options...
0 cheonsa Posted April 11, 2019 Report Share Posted April 11, 2019 Hi @MyMelody, In order to get rid of the tooltip, you must add some script on the footer of your DataPage. Insert Header/Footer in your Results Page. Click the Source Button or disable HTML Editor in the Advanced Tab. Then paste this code: <script> document.querySelectorAll('[title*="View Details row number"]').forEach(function(elem){ elem.title=""; }) </script> You may find other solutions here: -kristina Quote Link to comment Share on other sites More sharing options...
Question
MyMelody
I want to remove the "View Details row number %" in my Results Page when I hover the mouse in the View Details Link.
How can I get rid of it?
Thanks in advance.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.