Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With jQuery code like:

$("#myid").click(myfunction);

function myfunction(arg1, arg2)
{/* something */}

How do I pass arguments to myfunction while using jQuery???

share|improve this question

2 Answers

up vote 27 down vote accepted

Do it like so...

$("#myid").click(function() {
    myfunction(arg1, arg2);
});

This create an anonymous function, which is called when you run the click event.

share|improve this answer
good! should have thought of that... thanks. – Edward Wong Hau Pepelu Tivrusk Jun 11 '09 at 7:23
1  
keep in mind, you'll lose the jquery context $(this) in myfunction(). To maintain, call myfunction(this, arg1, arg2) from the anonymous handler. Then your function can do myfunction(el, arg1, arg2) { alert($(el).val()); } – Steve Lamb Oct 11 '11 at 16:41
4  
@geosteve: If you wanted to keep it, use myfunction.call(this, arg1, arg2). – alex Oct 11 '11 at 22:57

while you should certainly use Alex's answer, the prototype library's "bind" method has been standardized in Ecmascript 5, and will soon be implemented in browsers natively. It works like this:

jQuery("#myid").click(myfunction.bind(this, arg1, arg2));
share|improve this answer
1  
Will this be set to a different context if you use this method, for example, bind()ing it to this in that context (global) may result in that click handler having the window object as this as opposed to a reference to the #myid element? – alex Oct 27 '11 at 23:54
2  
@alex you are quite right. jQuery will bind the #myid element to 'this' in its event handlers, and using the bind method will override that. I wrote this post several years ago it would seem so it's hard to say what I was thinking at the time. I guess I just assume that the people reading my answers are smart enough to figure these details out themselves. – Breton Oct 28 '11 at 3:46
4  
That is a very dangerous assumption. – Travis Nov 14 '11 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.