Skip to content

Instantly share code, notes, and snippets.

@visb
Created April 16, 2014 23:10
Show Gist options
  • Select an option

  • Save visb/10941315 to your computer and use it in GitHub Desktop.

Select an option

Save visb/10941315 to your computer and use it in GitHub Desktop.
'use strict';
var inputs = document.querySelector('input[type="checkbox"]'),
camiseta = document.querySelector('#camiseta'),
i = 0,
len = inputs.length,
input;
for ( ; i < len; i++) {
input = inputs[i];
input.addEventListener('change', function(){
camiseta.style.backgroundColor = this.value;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment