How to disable/hide preview (i) icon on a reference field?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2019 07:30 AM
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2021 03:22 PM
Create a onload script
function onLoad() {
//Type appropriate comment here, and begin script below
$j('.icon-info').hide();
}