DOM manipulation in client script
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2019 06:34 AM
I want to hide (x) icon using client script, how can I use it in getElementById
Labels:
- Labels:
-
Scripting and Coding
6 REPLIES 6
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2019 06:37 AM
Hi,
You will need to add delete ACL on the Tags table(label) to prevent users from removing it. Please try adding an ACL for it and see if it works for you.
Thanks!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2019 07:00 AM
ACL doesn't work
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2019 12:43 PM
Did you happen to see this?
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-06-2020 08:40 AM
function onLoad() {
addAfterPageLoadedEvent(function(){
var w = false;
if (top.document.getElementById('gsft_main'))
w = top.document.getElementById('gsft_main').contentWindow.document;
if (!w) {
if (document) { w = document; }
else if (top) { w = top.document; }
}
var btn = w.getElementById('cxs_maximize_results');
if (btn)
btn.click();
});
}