Capitalize all Input Fields in Fluent Forms
-
Hello
I have built a form where I need to collect all data from users in Capitalized form. it is only their names, address and other personal dat, apt from emails
I am using the follow CSS. It is working on front end but the forms submitted are not capitalized.Thanks in advance
.ff-el-form-control { text-transform: uppercase; }
I have already tried this script but still not working
function capitalize() { var $input = $form.find('.ff-name-field-wrapper').find('input'); $input.on('blur', function() { var string = $(this).val(); if(string) { string = toUpperCase(); $(this).val(string); } }); } capitalize();
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Capitalize all Input Fields in Fluent Forms’ is closed to new replies.