G
G
grabbee2014-03-21 11:32:05
Android
grabbee, 2014-03-21 11:32:05

Android, native browser, why does the keyboard disappear on several textarea in one position: fixed block?

I made a kind of "pop-up messages" on the site in the lower left corner, like, for example, VK, OK or, for example, like in Skype. Messages form a queue, each new one pushes the previous one higher. Implemented in the block position: fixed; - blocks of messages are added to it, each of them has a textarea to write a response. Everything looks great, but in the Android 2.1 browser there was a glitch.
In an attempt to solve, I localized the bug in the browser. This demonstrates a simple code

<!DOCTYPE HTML>
<html> 
<body> 
                             
  <textarea>0</textarea>

  <div style="position:fixed; left: 10px; bottom: 20px;  width: 274px;">       
   <textarea>1</textarea>       
   <textarea>2</textarea>    
   <textarea>3</textarea>
   <textarea>4</textarea>
   <textarea>5</textarea> 
  </div>  

</body>
</html>

When clicking on blocks textarea 0, 4, 5 - everything works fine. But when you try to write to blocks 1, 2, 3 - the keyboard appears for a moment and immediately disappears. Help me please. Probably in other versions it is also buggy.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question