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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:35:48+00:00 2026-06-10T08:35:48+00:00

I am trying to create a generic click event function for all the fields

  • 0

I am trying to create a generic click event function for all the fields on a page which primarily checks for the target being blank or containing a user-entered value. However, I would like for this generic function to check for existence of a more specific function and, if one is found, to allow it to handle the validation of the target value.
example:

function genValueCheck(event) {
   var af = event.target.id+'_checkValue';
   if (typeof af == 'function') runFunction(af,[event]); // logic specific to this field
   else { 
      // logic for checking for blanks, etc which applies to all fields
   }
}

However, typeof returns ‘string’ in the above example, as it should since it is checking for the typeof ‘af’, and not what ‘af’ contains, i.e. the name of a function.

Is what I am attempting to do possible?

Thanks in advance.

  • 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-10T08:35:49+00:00Added an answer on June 10, 2026 at 8:35 am

    That’s because af is a string. If your function exists in the global scope, use window[af]. This should work for you:

    function genValueCheck(event) {
       var af = event.target.id+'_checkValue';
       if (typeof window[af] == 'function') runFunction(af,[event]); // logic specific to this field
       else { 
          // logic for checking for blanks, etc which applies to all fields
       }
    }
    

    Demo

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

Sidebar

Related Questions

I am trying to create a generic class which new's up an instance of
I've been trying to create a generic event. Basically it should look like this:
As of right now I am trying to create an ASP.NET page which will
I am trying to create a generic container (e.g. java code below), which has
I'm trying to create a generic class which will have some static functions based
I'm trying to create a generic function to build a Linq expression from a
I'm trying to create a generic graphics export tool which works by implementing the
I'm trying to create a generic function that removes duplicates from an std::vector. Since
I am trying to create a generic Identifier class which I would be able
I'm trying to create a generic function in grails that will allow me to

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.