Essentially your answer is this :
$("#files").bind("change",handleFileSelect);
However the change event is used by some other in-built event handlers so you might want to stay away from using that specific string as your event - unless of course you are looking to capture that event. :P
The change event is sent to an element when its value changes. This
event is limited to <input> elements, <textarea> boxes and <select>
elements. For select boxes, checkboxes, and radio buttons, the event
is fired immediately when the user makes a selection with the mouse,
but for the other element types the event is deferred until the
element loses focus.
The jQuery documentation says this to describe the bind function :
Attach a handler to an event for the elements.