Show/Hide (showHide)
Shows or Hides a section of text when clicking on a link.

How to Configure
-
Create a link to show/hide the text. This can be anywhere on the page.
<a data-sse-showhide="showhide-text" href="#">Click Here</a>The value of
data-sse-showhideshould be the id of the div surrounding the text created below. -
Add the text. This can be anywhere on the page as well.
<div id="showhide-text"> <p> This is the text to show/hide </p> </div>