How to show/hide container in service portal.
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-10-2023 01:03 AM
How to show/hide container in service portal. Would appreciate if any help.
Labels:
- Labels:
-
Service Catalog
1 REPLY 1
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-10-2023 03:20 AM
Hello @Community Alums --
Inspect the element by using browser's developer options and get the 'id' of the container ,then use the following JavaScript code to hide/show the container.
Code: document.getElementById("<inspected id comes here>").style.display = "none";
document.getElementById("<inspected id comes here>").style.display = "block";
Thank you!