In this article I will show you how to remove the last special character from a string using JQuery. The input text jQuery event change slices the last char from the string with the help of slice property and also checks for the character is Question mark (?), if it is then removed and will be displayed in the input textbox “title”.
$("#Title").change(function () {
var title = $('#Title').val();
var lastChar = title.slice(-1);
if (lastChar == '?') {
title = title.slice(0, -1);
}
$("# Title'").val(title);
});
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article