- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2014 05:02 AM
Hi,
I am trying to hide the attachment icon on header with below code in Eureka in an on load client script but it is not hiding the icon.
var attachment_header = document.getElementById('header_attachment_list');
attachment_header.style.display='none';
Any help or advise will be highly appreciated.
Sami.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2014 06:28 AM
Can you try hiding the attachment icon using below script
$$('img[title="Attachments..."]')[0].up().up().down().hide();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2016 09:52 AM
Thanks Amdadul. your suggestion seems to be working for my scoped application.