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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:31:14+00:00 2026-05-22T02:31:14+00:00

Let me start off by saying my JavaScript skills are lacking, to say the

  • 0

Let me start off by saying my JavaScript skills are lacking, to say the least. I have been having a problem with the following function:

function setClickHandler(element) {
    element.onchange = function () {
        var id = this.options[this.selectedIndex].value;
        if(document.getElementById(id) !== null){
            clickHandler = document.getElementById(id).onclick;
        } else {
            clickHandler ="runMe('" + this.id + "','" + id + "','','null')"; }
        clickHandler.apply(this);
    }
}

Basically what it does is if a element exists with the "id" then use that elements onclick function and if it doesn’t exist then create the one within the function. Then apply this onclick function to the element.

Everything works except if the "id" does not exist and it goes into the else statement where the clickHandler has to be created. I cannot figure out why this won’t work. I did notice when I logged it if clickHandler was taken from another existing id then clickHandler output something like (onclick).event where if it went into the else statement it output runMe('24','54','','null').

I hope I am explaining this well enough. Any help would be greatly appreciated.

  • 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-22T02:31:15+00:00Added an answer on May 22, 2026 at 2:31 am

    you’re creating a string in the else case, which you can’t call as a function. try this

    if (document.getElementById(id) !== null) {
        clickHandler = document.getElementById(id).onclick;
        clickHandler.apply(this);
    }
    else {
        // clickHandler = "runMe('" + this.id + "','" + id + "','','null')";
        var runMeArgs = [this.id, id, '', 'null'];
        runMe.apply(this, runMeArgs);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let me start out by saying that I'm not a JavaScript developer so this
Let me start off by saying that I'm pretty new to flex and action
Let me start off by saying that I am completely new with WPF (this
Let me start off by saying that I am very new to WPF and
Let me start off by saying Im VERY new to iphone development, but Im
Let me start off by saying, I'm using the twisted.web framework. Twisted.web 's file
Preface Let me start off by saying that I'm a relatively new programmer and
First let me start off by saying I do not believe I am leaking,
To start off, let me clear the air by saying we are aware of
Let me start off by saying I had one DLL loading in just fine.

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.