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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:58:20+00:00 2026-05-13T18:58:20+00:00

Is it possible to pass arguments to click or submit function like : $(#example).click(function()

  • 0

Is it possible to pass arguments to click or submit function like :

$("#example").click(function()
{
  var myVar = x; // refering to x as passed argument
});

Maybe function inside a function ?

function Func(){
  $("#example").click(function()
{
  var myVar = x;
});
}

Maybe something like calling Func()('33'); will this pass the 33 to the click function, is it possible after all?

  • 1 1 Answer
  • 2 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-13T18:58:20+00:00Added an answer on May 13, 2026 at 6:58 pm

    Without knowing what you want to accomplish, its hard to tell you what to do. Many times when a similar need arrises, it has to do with passing an ID to the function. There are a few ways to handle this, but lets look at one:

    var $a  = $('a'), // Pretend we have three `a` elements
        keys = ['apple','orange','grape'];
    
    $a.each(function(i,el){
      var val = keys[i]; // Declare a variable to this scope using `var` and set it to the value you want:
      $(this).click(function(){
         alert(val);
      });
    });
    

    Now, if you click the first a it alerts apple, the second orange, and the third grape. By declaring a variable in the function scope using var allows that particular click to know the correct value.

    Demo of this working

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

Sidebar

Related Questions

Is it possible to pass a javascript function with arguments as an argument? Example:
Is it possible to pass arguments to a entity in ORM like my example
Is it possible to pass additional arguments to an event callback? For example, if
like this question I want to pass a function with arguments. But I want
Assuming it's possible, how would one pass arguments by reference to a variadic function
Is it possible to pass functions with arguments to another function in Python? Say
Is it possible to pass several arguments inside a CommandArgument parameter to the ItemCommand
Is it possible to pass command line arguments into a function from within a
Possible Duplicate: pass parameter in g:remoteLink as result of javascript function I am trying
Is it possible to pass TargetActivity.class to another activity and do something like: //

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.