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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:37:55+00:00 2026-05-26T21:37:55+00:00

I am trying to call two javascript functions on single events. Here is my

  • 0

I am trying to call two javascript functions on single events. Here is my function calling code.

<input type="text" name="cbh" id="c8"  value="0"  onkeypress="return isNumberKey(event);calculate();" />

First function to allow numbers only and it have following work flow.

    function isNumberKey(evt)
{
    var charCode = (evt.which) ? evt.which : event.keyCode
    if (charCode > 31 && (charCode < 48 || charCode > 57))
    return false;



    return true;
}

For debugging purpose, sencond function has just one line.

function calculate()
{
    alert("ok");

}

Now, first function is being called 100% ok. But second function does not seem being called. Any suggestions?

Edit: I want to call second function after execution of first function.

  • 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-26T21:37:56+00:00Added an answer on May 26, 2026 at 9:37 pm

    Because you are returning after the first call.

    If you want to skip the second if the first returns false:

    onkeypress="if (isNumberKey(event)) { calculate(); return true; } else { return false; }"
    

    If both are to return status, and the second should only run if the first returns true:

    onkeypress="return isNumberKey(event) && calculate();"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have piece of function which I am trying to call at two different
I'm trying to pass two parameters to a JavaScript function. Unfortunately this give me
I am trying to call a JavaScript function on click in a MVC2 View
Hi I am trying to call two user defined functions and expecting the first
I have a JavaScript function that I am trying to call when the confirm
I'm trying to call AMFPHP two times on a single ActionScript method and what
I'm fairly new with jQuery, and I'm trying to call two functions on successful
I trying to call 2 functions in the same page to submit jquery-ajax at
I'm trying to call a function after I load some XML into Actionscript, and
I'm trying to call the OpenThemeData (see msdn OpenThemeData ) function but I couldn't

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.