Skip to content

Instantly share code, notes, and snippets.

@jro
Created December 30, 2010 21:17
Show Gist options
  • Save jro/760313 to your computer and use it in GitHub Desktop.
Save jro/760313 to your computer and use it in GitHub Desktop.
var liveToggler = new Element('input', {
'type': 'checkbox',
'id': this.parentElement + '-live',
'name': 'live',
'events': {
'click': function() {
this.options.live = !this.options.live
}.bind(this)
},
'styles': {
'margin-left': '4px',
'cursor': 'pointer'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment