Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8783653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:52:32+00:00 2026-06-13T20:52:32+00:00

I would like to autocorrect a field for initials, but my knowledge is limited,

  • 0

I would like to autocorrect a field for initials, but my knowledge is limited, so after an hour of trial and error, all I have is a small script that just uppercases the input. What I would like is this:

  • a becomes A. (uppercase and ends with a dot)

  • AbC becomes A.B.C.(uppercase and seperated by a dot)

  • A1BC_* becomes A.B.C. (no other characters allowed, uppercase and seperated by a dot)

What I have is this:

    $(".hoofdletters").keyup(function(e)
    {
        $(".hoofdletters").val(($(".hoofdletters").val()).toUpperCase());
    });

Update

I don’t want to waste anyones time and open a new topic, so i try it here. I tried something myself as well to automatically capitalize every word in a sentence. Everything is working, but for some reason the space get’s deleted. It has something to do with + '' If i delete that nothing works anymore, if i add a space i get a space after every letter and if i leave it this way, then spaces are not allowed.

Anyone any suggestion?

$('.cap').bind('textchange', function (event, previousText) {
        var val = this.value;
        var newVal = '';
        val = val.split(' ');
        for(var c=0; c < val.length; c++) {
                 newVal += val[c].substring(0,1).toUpperCase() +
 val[c].substring(1,val[c].length) + ''; // It has something to do with this line
        }
        this.value = newVal;
    });​
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T20:52:33+00:00Added an answer on June 13, 2026 at 8:52 pm

    Fiddle

    $(document).ready(function() {
        $(".hoofdletters").focus(function() {
            var current = $(".hoofdletters").val();
            $(".hoofdletters").keyup(function(e) {
                var key = String.fromCharCode(e.keyCode);
                console.log(e.keyCode);
                if (key >= 'A' && key <= 'Z') {
                    current += key + ".";
                    this.value = current;
                }
                else if (e.keyCode == 8) {
                    current = $(".hoofdletters").val();
    
                } else {
                    current = "";
                }
            });
            $(".hoofdletters").blur(function() {
                var i = $(".hoofdletters").val();
                var last = i[i.length - 1];
                if (last != "." && i.length !== 0) {
                    this.value += ".";
                }
            });
            $('.hoofdletters').keydown(function(e) {
                var i = $(".hoofdletters").val();
                if (e.keyCode == 8 && i.charAt(i.length - 1) == ".") {
                    $(".hoofdletters").val(i.slice(0, -1));
                    current = $(".hoofdletters").val();
                }
            })
        });
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

would like to know which Font is the thinnest in Java. I have limited
Would like to know how to hide an div after a set of css3
I would like to add a GestureDetector to all views (view groups) of an
I've dealt with errors like this in Eclipse before, but I have no idea
Would like to group all header files in my project in one class ,so
Would like to do this: letters: charset ABCDEFGHIJKLMNOPQRSTUVWXYZ pick letters 2 but pick doesn't
Would like to know from all you guys what do you think about my
I would like to disable text-entry autocorrect in an iPad application, regardless of what
Would like to get a list of all packages available on CRAN to the
Would like suggestions on quick and easy error handling for asp.net mvc web application.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.