I have about 7 textarea
s on a web page, all of them are rich text editors using TinyMCE. However at page load only 1 of them is visible and the rest of them hidden. The user can click a 'show' link which would display the remaining textareas one by one.
However, I have a weird problem. All the textarea
s are setup like this:
<textarea cols="40" rows="20"></textarea>
However, only the textarea
displayed on page load is the full size I want it to be. The remaining textarea
s are really small when I show them. So I'm thinking that perhaps they aren't rendered because they are hidden on page load.
How can I remedy this?