How to delete last character from a string for instance in 123-4- when I delete 4 it should display 123- using jQuery
123-4-
4
123-
You can also try this in plain javascript
"1234".slice(0,-1)
the negative second parameter is an offset from the last character, so you can use -2 to remove last 2 characters etc