How do I see the state of a toggle button?
With a checkbox I can listen to "changed" event of the checkbox and do a $(this).is(":checked") to see what state it has.
<a id="myId" class="btn" data-toggle="button"/>
But not sure how to do that with a toggle button?