Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

How to show/hide container in service portal.

Community Alums
Not applicable

How to show/hide container in service portal. Would appreciate if any help.

1 REPLY 1

Community Alums
Not applicable

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!