Solved
Capitalise strings
I have a field for entering a name. Is there javascript (or other means) of capitalising the first letters of the name?
Best answer by Anonymous
Hello @duncan_19 ,
Paste the below code to the js(onReady) of the Text entry question type
jQuery("#"+this.questionId+" .InputText").on('blur',function(){
jQuery(this).val(jQuery(this).val().replace(jQuery(this).val()[0],jQuery(this).val()[0].toUpperCase()));
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
