Best way to update input fields automatically?

Hi, I have a very simple form which has a few input fields that need to be calculated to a single input field with the total.

I’m wondering what jQuery function is best for automatically updating the total field, whenever one of the input fields is entered? Can you do .change with an input field? Or what about .blur? Thanks for any advice.

So it seems that .change() does work on an input field, which I like and may stick with. .blur() also works too.

Any differences here in browser support?

Hi,
Try with query keydown. This event is triggered when user presses a key on the keyboard. It works for input text fields.