I have an index.html file with an internal script that appends a textarea to the DOM when a radio button is checked.
I have an external script that gets the value of that textarea when a form is submitted and sends it as a form param. All my other form params are showing up correctly in the HTTP headers, however, this form param shows up as "undefined".
Is jQuery not allowed to select an element by ID when that element has been appended after the page was loaded? Should I be using the visibility property instead?