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!