Is there a way to input a million numbers (or higher) into a <input type="text">
without having Chrome crash? My machine has 32GB of RAM so memory shouldn't be an issue but Chrome slows down heavily. I've tried hiding the numbers using CSS but still freezes.
Asked
Active
Viewed 135 times
2

petabyte
- 1,487
- 4
- 15
- 31
-
3You'll probably be better off with an `` that you drag your input file into, and use the Blob/File APIs to read the data. – AKX Mar 19 '20 at 08:03
-
What is your os? I think you need to increase your Chrome memory limit. https://stackoverflow.com/questions/17491022/max-memory-usage-of-a-chrome-process-tab-how-do-i-increase-it – Jaha Mar 19 '20 at 08:03
-
What's your use case? Pasting huge amounts of text? Automation? – John Weisz Mar 19 '20 at 08:12
1 Answers
-3
Please Try ,
<input type="text" style="width:500px;height:500px;">
you need to add style for more and more biger input and if you want to add millions of number
Chrome crashes somewhere After 8,000,000.... IE8 crashes somewhere After 8,000,000.... Safari crashes somewhere After 2,000,000....

Darshit Makasana
- 11
- 3