Hello. There is a table that is dynamically filled with ajax.
jQuery works with elements that were on the page at the time of initialization of the code. If new elements are added - with ajax or functions like append () - then the events do not affect them.
Question: what event should I use for $ ('body'). On () to select the cells I need (by class, by id, whatever) for later processing?
Briefly about what exactly I want to receive, then in each row of the table in one of the cells there is a date / time, and in another cell of the same row of the table I need to insert a countdown timer to see the remaining time (later I will remove the date, only timer).
All the examples found use the click event, in my case no clicks are assumed.