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

  • Home
  • SEARCH
  • 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 377573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:42:35+00:00 2026-05-12T14:42:35+00:00

Hi This is a simple question i guess: My requirement is in the Text

  • 0

Hi This is a simple question i guess:
My requirement is in the Text box whenever user enters mail, the domain name should be appended automatically.Also the name entered should not allow special characters except ‘.’ ‘_’ in reality. Also the user should not be allowed to add any other domain except which is specified in the property file.This is in JAVASCRIPT

  • 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-05-12T14:42:35+00:00Added an answer on May 12, 2026 at 2:42 pm

    Why not simply show

    |_____________| @yourdomain.com

    and do the appending either when submitting (onsubmit event) or on the server side?

    e.g.

    function email_form_submit(event)
    {
        event = event || window.event;
    
        if (event.preventDefault)
            event.preventDefault();
    
        if (event.stopPropagation)
            event.stopPropagation();
        else
            event.cancelBubble = true;
    
        var form = document.getElementByID('your form id');
        var element = document.getElementByID('your email form element id');
        element.value = element.value + "yourdomain.com";
    
        form.submit();
    
        return false;
    }
    

    See http://msdn.microsoft.com/en-us/library/ms536972%28VS.85%29.aspx

    EDIT
    quick validation regex. Note: not tested

    function validate_email_address(event)
    {
        event = event || window.event;
    
        var regex = /^[a-zA-Z0-9._]+@yourdomain\.com$/;
    
        var element = document.getElementByID('your email form element id');
        element.value = element.value + "yourdomain.com";
    
        if (!regex.test(element.value))
        {
            alert("Invalid Email");
            if (event.preventDefault)
                event.preventDefault();
            return false;
        }
    
    }
    

    Edit: fixed syntax error

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a simple question,I guess, but I couldn't figure it out. How do
I guess this is a simple question. I need to do something like this:
I have a simple question (i guess). I'm getting the name of the function
Simple question (I guess). I have this default google tutorial code for tabs: intent
i guess this is a pretty simple question. I want to give my li-tags
This is a simple question i guess.... I have a panel that i can
I guess that this is a simple question for most of you but none
I guess this is just a simple question (I’m such a noob…) I have
I guess this is a quite simple (read: very simple) question, but I have
I guess this is a really simple question and, probably, one that has been

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.