JQuery

Remove last special character using jQuery

Remove last special character using jQuery, someone asked me to explain?

Remove last special character using jQuery

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