Sure, try the below modified switchcontent.js file. It adds a setClass() function, so you can now toggle the header's CSS class name when initializing the script:
Code:
var joeexample=new switchcontent("switchgroup2", "p") //Limit scanning of switch contents to just "p" elements
joeexample.setStatus('[open] ', '[closed] ')
joeexample.setColor('green', 'red')
joeexample.setClass('openclass', 'closedclass')
joeexample.collapsePrevious(false) //Allow more than 1 content to be open simultanously
joeexample.setPersist(false)
joeexample.defaultExpanded(0,1)
joeexample.init()
Bookmarks