I was having hard time how to override the default message for minimum length input in jquery Select2.
by default the plugin gives th
You can try this on version 4.0 or higher you can see reference for answer frome this link : issues reference
$("#select2").select2({ minimumInputLength: 1, language: { inputTooShort: function() { return 'Please Add More Text'; } } });