I would like to globally catch whenever some element (f.e. textarea) is rendered on the page to do something with it. Element could be inserted by AJAX request too.
// This is just an example of functionality I want to achieve
// Not a real code
$(document).on('render', 'textarea', function() {
$(this).whatEver();
});
I know about document's ajaxComplete method, but I am looking for some more generic way.