[Solved] Append text to end of text box dynamically with jQuery
[ad_1] Use jQuery to append the text at the end, and then move the caret to the desired position: $(‘#title’).on(‘keyup’, function(e) { // Ignore if backspace is pressed if(e.keyCode == 46){ return false; } // Set the value based on the current value length // If it’s longer than 3, “day” is already appended this.value … Read more