The documentation says a button can be formatted to toggle on or off, but the example given is merely
Vote &
It is very simple,
Toogle button
just use the classic jquery click to toogle the active class, and add any other changes you need. I think that using semantic stage is a waste of time in this case.
$('#tgl').click(function(){ $(this).toggleClass('active'); });