You've got a syntax error:
$('input:checkbox').live('click', function () {
// works fine
});
$('select').live('change', function () {
// should be working now
});
Note the );
that I've added.
Edit now that you've updated your question, my answer doesn't make sense. I'm going to guess, however, that you've got additional code between these two lines, and that code is raising an error, which stops the second live()
call from being called.
That's just a guess, though....
Dean Harding
2010-08-25 06:57:09