I am trying to limit the number of lines in a text area to 20, and number of characters in each line to 15 for IE8 browser. I tried the solutions already available on stackoverflow like https://stackoverflow.com/a/11586266/1453499 however all of them works in chrome and other modern browsers not in IE8. Is there a solution compatible with IE8?
Asked
Active
Viewed 134 times
0
-
Changing `textArea.keypress(function(e)` to `textArea.on('keypress change keyup', function(e)` doesn't help? – Mehdi Dehghani May 22 '17 at 02:31
-
That did not help, the issue is with textArea.get(0).selectionStart statement – coder May 22 '17 at 17:52
1 Answers
0
I used the combination of two answers (https://stackoverflow.com/a/3373056/1453499 & https://stackoverflow.com/a/11586266/1453499) to find the solution to my problem, below is the final solution
function getInputSelection(el) {
var start = 0, normalizedValue, range,
textInputRange, len, endRange;
if (typeof el.selectionStart === "number" && typeof el.selectionEnd === "number") {
start = el.selectionStart;
} else {
range = document.selection.createRange();
if (range && range.parentElement() === el) {
normalizedValue = el.value.replace(/\r\n/g, "\n");
len = normalizedValue.length;
// Create a working TextRange that lives only in the input
textInputRange = el.createTextRange();
textInputRange.moveToBookmark(range.getBookmark());
// Check if the start and end of the selection are at the very end
// of the input, since moveStart/moveEnd doesn't return what we want
// in those cases
endRange = el.createTextRange();
endRange.collapse(false);
if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
start = len;
} else {
start = -textInputRange.moveStart("character", -len);
start += normalizedValue.slice(0, start).split("\n").length - 1;
}
}
}
return start;
}
$(document).ready(function() {
//Restrict the search
var textArea = $('#textarea_id');
var maxRows = 30;
var maxChars = 17;
textArea.keypress(function(e) {
var text = textArea.val();
var lines = text.split('\n');
if (e.keyCode === 13) {
return lines.length < maxRows;
} else { //Should check for backspace/del/etc.
var caret = getInputSelection(textArea.get(0));
var line = 0;
var charCount = 0;
$.each(lines, function(i, e) {
charCount += e.length;
if (caret <= charCount) {
line = i;
return false;
}
//\n count for 1 char;
charCount += 1;
});
var theLine = lines[line];
return theLine.length < maxChars;
}
});
});