One JQuery Change Event on Multiple Elements

I have 3 textboxes, all with the same id's that I process into ASP by bringing it into a controller arrayI have a link that adds an unlimited number of textboxes below the first 3.My current change statement:\[code\] $('input.#invent').change(function () {\[/code\]works fine for the change event on the first textbox,but the others with the same information do not fire it when changedWhat is the best strategy for getting the change event to fire when any of the 3+ textboxes change??
 
Top