showing results for - "remover ultimo character string javascript"
Matys
26 Apr 2016
1var texto = $("#input_id").val();
2$("#input_id").val(texto.substring(0, texto.length - 1));
3