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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:40:00+00:00 2026-05-16T22:40:00+00:00

I want to call a function onclick and pass the event object to the

  • 0

I want to call a function onclick and pass the event object to the function:

 progressBarOuter.onclick = function(e)  { 
     var x; if (!e) {
         x=window.event.clientX;
     } 
      else {
          x = e.clientX
     } 

     yt.clickedOffset = x; yt.progressBarClicked
 }

So i’m assigning clickedOffset to by enclosing object (yt) and then calling progressBarClicked which then uses the clickedOffset var. But what I actually would rather be doing is something like this:

progressBarOuter.onclick = yt.progressBarClicked(e);

Because it’s much more compact. Problem is that even if the user has clicked or not this bit of code is executed… yt.progressBarClicked(e).

Is there any way around this?

  • 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-16T22:40:01+00:00Added an answer on May 16, 2026 at 10:40 pm

    Your:

    progressBarOuter.onclick = yt.progressBarClicked(e);
    

    doesn’t yield the expected result, because you’re not assigning the function yt.progressBarClicked to the onclick handler. You are actually calling the function and therefore assigning its return value to onclick.

    The shortest working thing you can get without breaking anything is this:

    progressBarOuter.onclick = function(e){
        yt.progressBarClicked((e || window.event).clientX); // pass the x position as a parameter
    };
    

    If you don’t wrap it, yt.progressBarClicked will be called from the window object and therefore the value of this inside the function will be also set to the window object.

    Of course you could also handle the calculation of the x position inside the function and just pass the event to it:

    progressBarOuter.onclick = function(e){yt.progressBarClicked(e);};
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a link call a Javascript function through the onclick event
I want to call a function from a .NET DLL (coded in C#) from
I want to call a function (which calculates my version number) when my NSIS
I want to call a c# function from my javascript function. I have a
I want to use LabVIEW's Call Library Function Node to access a DLL function,
I often want to make a multiline function call and reduce it down to
I have a simple function that I want to call in the code behind
I want to call ShowDialog() when a keyboard hook event is triggered, but I'm
I want to call a web service, but I won't know the url till
I want to call a few static methods of a CPP class defined in

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.