Skip to content

Instantly share code, notes, and snippets.

@clowwindy
Created May 29, 2012 15:34
Show Gist options
  • Save clowwindy/2829112 to your computer and use it in GitHub Desktop.
Save clowwindy/2829112 to your computer and use it in GitHub Desktop.
<a href="#" title="blue">blue</a>
<a href="#" title="red">red</a>
<script>
function bgc() {
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; ++i) {
links[i].onclick = (function() {
var color = links[i].title;
return function() {
document.body.style.backgroundColor = color;
}
})();
}
}
bgc();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment