I am using jQuery's .on()
function to attach event handlers to elements when they appear in the document:
$(document).on('change', '#elementId', handlerFunction);
I would also like to call the handlerFunction
when the element becomes part of the document, not just when the change
event is triggered. Is there an event that I can add to the list?