Problem
The current version of Firefox (mine is 2.0.0.14) has a bug that makes the cursor in text fields and text areas disappear inside of divs in some cases. From the bug report:
Steps to Reproduce: 1. create a division with data and set style.overflow="auto" or "scroll" 2. create a second division with INPUT elements (type=text)on top(higher z-index) 3. focus on the INPUT elements Actual Results: cursor position is not visible Expected Results: blinking cursor position in the INPUT element being focused
Workaround
One workaround I found that seems to do the trick is to add a child element (usually a div) with the style position: fixed. Alas, the trick involves an additional element of markup, but at least won’t confuse your users.
Wow, haven’t seen that before. Writing down the workaround in Snippely now…
Thnaks Man! it worked like a charm!!!!
Try adding