Demonstration: Roll out your own Interface

↓ Click these ↓

test 1
test 2

Application code

$(window).on('load', function() {
  $('test-1', 'test-2').on('click', function() {
    $(this).css({
      color: 'green',
      background: '#cccccc',
      fontSize: '2em'
    }).addClass('active');
  });
});

Roll out your own JavaScript Interface