var value = document.getElementById("height_"+ rowCount).value;
value = value .replace("a", "");
document.getElementById("height_"+rowCount).value = value;
Above is a javascript example that I used to replace the letter "a" in my text field height_row e.g height_1 (for row 1)
I want to able to filter all input except
0 to 9, letter s, how do I auto replace all input with blank if its not number 0 to 9 or letter "s"
Thanks for helping