PolicyGenius - Style Guide

Switch Images

.mod-switch-images
  img.active src='images/dog.png'
  img src='images/dog2.png'
.mod-example.text-center
  button.button.mini In rhoncus orci
$('button').on('click', function(e) {
  var $target = $('.mod-switch-images img').not('.active');
  $('.mod-switch-images img').removeClass('active');
  $target.addClass('active');
});