I believe I could do this with .live but that method is deprecated. Here\'s the issue:
I have a click handler function that should fire on any element with the class
You need to use Event delegation
jQuery(document).on('click','.myClickEl', function() { var formText='This is some text to paste'; jQuery(this).parent().next('textarea').val(''); jQuery(this).parent().next('textarea').val(formText); });