First off, I know this question is similar to: Firefox cache textarea value? but mine is slightly different (I think, I'm very inexperience at HTML).
So I have a
<div class='class'><div id='message'><textarea id="msg">msg</textarea></div></div>
I'm trying to disable caching so that when I refresh, it grabs the textarea concent from the server, not from the browser. But I'm only trying for just this textarea. Unfortunately, the contents of the textarea are generated by code, not hardcoded. Can I stick the "autocomplete=off" attribute in one of the divs and will it filter down to the textarea? Or do I have to find out where the code is generated for the textarea and modify that?
[EDIT] (from comment-has-an-answer) So because I don't have control over the markup fields, I had to write a jquery that matched the specific textarea ID. Maybe next time people will actually read the question...