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 327101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:22:15+00:00 2026-05-12T09:22:15+00:00

I’m an experienced developer, but new to javascript. I can’t figure out when I

  • 0

I’m an experienced developer, but new to javascript. I can’t figure out when I should use the whole “document.getElementById(e.id).value” and when I can just use “e”. I’m looking at a tiny existing function in a common functions script that uses both.

function RemoveFormat(e) {
document.getElementById(e.id).value =
cleanNumber(document.getElementById(e.id).value);
e.select(); }

(where cleanNumber is another common function)

Presumably there are circumstances that make the extra typing necessary, but what are they?

Thanks!

  • 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-12T09:22:15+00:00Added an answer on May 12, 2026 at 9:22 am

    Your example demonstrates when you have a reference to the element you want to control. If you already have a reference to the element, there is no reason to use document.getElementById to obtain a reference to it (you already have one):

    <span id="mySpan" onclick="test(this);">TEST</span>
    <script type="text/javascript">
    function test(el) {
        // el is a reference to an element, you can use it directly
        el.style.display = 'none';
    
        // to demonstrate that the element you retrieve from gEBI 
        // with el.id is the same as your original reference
        var elAgain = document.getElementById(el.id);
        alert(elAgain === el); // "true"
    }
    </script>
    

    The place where you might want to use document.getElementById is when you want to control another element to which you don’t already have a reference:

    <span id="mySpan" onclick="test(this, 'myDiv');">TEST</span>
    <div id="myDiv" style="display:none;">DIV REVEALED</div>
    <script type="text/javascript">
    function test(el, otherElId) {
        // el is a reference to an element, you can use it directly
        el.style.display = 'none';
        // otherElId is a string containing the id of
        // the element you want to control
        var theDiv = document.getElementById(otherElId);
        theDiv.style.display = '';
    }
    </script>
    

    Note that there is rarely (if ever) a reason to do something like the following:

    <span id="mySpan" onclick="test('mySpan');">TEST</span>
    <script type="text/javascript">
    function test(theElId) {
        var el = document.getElementById(theElId);
        el.style.display = 'none';
    }
    </script>
    

    If the function is being fired from an element event, you can just pass this (as per my first example), rather than passing the id of the element the event is happening on.

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

Sidebar

Ask A Question

Stats

  • Questions 203k
  • Answers 203k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer One of the best solutions for this is something like… May 12, 2026 at 8:34 pm
  • Editorial Team
    Editorial Team added an answer Try somethign like this DECLARE @NumberPerPage INT SELECT @NumberPerPage =… May 12, 2026 at 8:34 pm
  • Editorial Team
    Editorial Team added an answer If you look inside pbsi.sty you'll find \DeclareRobustCommand\bsifamily{\fontencoding{T1}\fontfamily{pbsi}% \fontseries{xl}\fontshape{n}\selectfont} Therefore,… May 12, 2026 at 8:34 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.