0

I want to set the maximum number of lines in Textbox also I tried multiple places for this answer but I failed.

I tried this and this and then I have found an issue that keyboard of mobile is not working on Keypress event while It's working on keyboard of the desktop.

Please help me to find the answer.

Thank You for concentration.

  • [Please search better](https://www.google.com/search?q=jquery+limit+lines+textbox+site:stackoverflow.com) - [here with mobile](https://www.google.com/search?q=jquery+limit+lines+textbox+mobile+site:stackoverflow.com) – mplungjan Jan 04 '22 at 11:26
  • Thank you sir but I have issue that Keyboard of mobile is not working except Enter Key. @mplungjan – Shashank Singh Jan 04 '22 at 11:27
  • I did not find answer . Can ANtone help to solve this ? – Shashank Singh Feb 08 '22 at 09:43

1 Answers1

0

Lines used: 0
$(document).ready(function(){

var lines = 10;
var linesUsed = $('#linesUsed');

$('#countMe').keydown(function(e) {

    newLines = $(this).val().split("\n").length;
    linesUsed.text(newLines);

    if(e.keyCode == 13 && newLines >= lines) {
        linesUsed.css('color', 'red');
        return false;
    }
    else {
        linesUsed.css('color', '');
    }
});

});