[jQuery] bind the same functionality to load and change event

[jQuery] bind the same functionality to load and change event


hi there,
i want to execute the same lines of code when the site has finished
loading AND when an onchange-event is fired.
i tried something like
$("#properties div select").bind("ready change",function(e){
$("#properties div select").bind("load change",function(e){
but this does not work :/
can you tell me how to do something like that?
thank you!