All pastes #679431 Raw Edit

Behaviour.register help

public javascript v1 · immutable
#679431 ·published 2007-09-03 00:22 UTC
rendered paste body
Behaviour.register({  '#SomeSelectElementsID': {    onchange: function() { // Called when the element is changed      if(this.value == 'the-value') {        $('#TheElementToDisplay').style.display = ''; // Don't use 'block' as some browsers don't like it      } else {        $('#TheElementToDisplay').style.display = 'none'; // Hides the element      }    },    initialize: function() { // Called when the page is loaded      if(this.value != 'the-value') {        $('#TheElementToDisplay').style.display = 'none'; // Hides the element      }    }  }});