Traditionally, organization names start with a capital letter, and this followed by lower case letters, e.g. "Wonderful Company". By default, when your attendees enter a company name on a registration site, it will be recorded like this in EventsAir.
However, many organization names have some other combination: all upper case / capital letters, a capital letter in the middle, all lower case etc.
If you want company names or other data such as first and last name to be recorded exactly as it's been entered on the site, you can add some scripting to your interactive (registration) site to accommodate this.
Copy and paste the code [script] as shown below into the "Analytics Code For Page View" section of your interactive (registration) site. This section is under the Details tab in the interactive (registration) site builder, (in the SEO tab). If you can't see this code properly in the Support chat window, please refer to the original article in the Help Center.
<script>
//disable auto-capitalizing
$(window).load(function(){
$('input[name="FirstName"]').off()
$('input[name="LastName"]').off()
$('input[name="Organization"]').off()
$('input[name="Position"]').off()
})
</script>
Please note the above code is provided for your convenience and our Support agents can't provide additional website development services.