I have 3 jquery objects:
var a = $(\'.el1\'); var b = $(\'.el2\'); var c = $(\'.el3\');
And I want to bind a \"change\" event to all of the
Try this:
$('.el1, .el2, .el3').bind(....)