Experience League
Community
Discussions
Ideas
Community Blogs
Community Advisors Page
Marketo User Groups (MUGs)
Support
Marketo Support
Knowledgebase
Measure Support
Product Documentation
Developer Portal
Training
Deutsch
✔
English
✔
Español
✔
Français
✔
日本語
✔
Português
✔
Sign In
Improper Capitalization on Form Fills
Topic Options
Subscribe to RSS Feed
Mark Topic as New
Mark Topic as Read
Float this Topic for Current User
Bookmark
Subscribe
Printer Friendly Page
Anonymous
Not applicable
11-19-2013
10:59 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
11-19-2013
10:59 AM
Hi Marketo Community!
Leads have been filling out our form with improper capialization such as JOHN or john. When we send out emails with tokens it will mimic this. Is there a way to control or fix how they capialtize their information?
Thank you!
Labels:
Labels:
Lead Management
Tags
(1)
Tags:
lead database
All forum topics
Previous Topic
Next Topic
2 REPLIES
2
Anonymous
Not applicable
11-20-2013
01:25 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
11-20-2013
01:25 AM
A very simple JavaScript within form validation can capitalise the first letter of each word.
function normaliseCase(str)
{
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}
Adding custom validation to a Marketo form before submitting it
http://community.marketo.com/MarketoResource?id=kA650000000Gtt6CAC
Anonymous
Not applicable
11-19-2013
11:37 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
11-19-2013
11:37 AM
Subscribing, we have this same issue.
Post Reply