I wrote a code for adding 3 dots (...) when input field's value is too long. But It didn't work (I checked .after("...") its works)
If the number of letters times 8 is greater than 350, 3 dots must be added
var degisinput = document.querySelector(".degistirilebilirinput").value;
if(degisinput.lenght * 8 > 350)
{
$(".bloklink .degistirilebilirinput").after("...");
}