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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:08:20+00:00 2026-06-18T02:08:20+00:00

When calling a JavaScript function what does the return value do to an input

  • 0

When calling a JavaScript function what does the return value do to an input form field? For example:

<script type="text/javascript">
 function foo()
 {
  return true;
 }
</script>
<input type="text" id="txt1" onkeyup="return foo()" />

and variations, IIRC onkeyup="foo(); return false"
I don’t really need a return time, what’s the easiest way to do this?

Right now I’m trying to call multiple functions from one event and not sure what the appropriate way is:
<input type="text" id="txt1" onkeyup="return foo1(); return foo2();" or
<input type="text" id="txt1" onkeyup="return foo1()" onkeyup="return foo2();"

  • 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-18T02:08:22+00:00Added an answer on June 18, 2026 at 2:08 am

    return false; is used to stop the event from having its default effect (in this case, the letter typed from being added). return foo() is used so that foo can be the judge of whether to return true or return false and therefore whether or not the default action should happen.

    If you are just calling a function that won’t affect whether or not the event actually takes place, just use onkeyup="foo1(); foo2();". If, however, one of them affects the outcome, it should be called last and have a return before it.

    In general, though, it’s easier to have a single function in there, say onkeyup="return foo()", and then have

    function foo() {
        foo1();
        foo2();
        return true; // or whatever
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: calling ASP function from javascript okay running this code : <script type=text/javascript>
My Javascript <script type='text/javascript'> //<![CDATA[ function showAnswer() { alert('Answer'); var els = document.getElementsByClassName('answer'); if
I'm calling the JavaScript function onsubmit of form but form has submit before finished
Why does calling my JavaScript function throw an error when I call it like
I have a form with onsumbit attribute. I am calling a javascript function on
This is related to a question I've asked previously: Calling Javascript function after loading
I am calling a Javascript function in my html page from a Flash movie
Here i am calling a javascript function on a button click and i need
I have a javascript function for checking errors which I am calling on OnClicentClick
I'm calling a utility called Highslide in a javascript function. Embedding the whole thing

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.