Basically I'd like to bind function A to all inputs. Something like this:
$('input').bind('change', function() { bla bla bla });
And then later I would like to bind something different in addition like this:
$('#inputName').bind('change', function() { do additional processing..});
Is that possible? Does it work? Am I missing the syntax? Is that fine actually fine (meaning I have a bug elsewhere that's causing one of these not to bind)?