replied on February 16, 2016
Is the code the same for a suffix removal?
I tried to alter the code to reflect a CSS Class on a different field wherein I am trying to remove the trailing % this time. However, unlike your code, this does not remove the % data from the end of the data in that field.
I modified your code to try the same test on this particular field configured with CSS as SEQ as well with no positive results.
$(document).ready(function() {
$(".SEQ input").on("blur", function(){
$(this).val($(this).val().replace('%', ''));
});
});