When I have
$('#div').click(function(someVar){//do something with soneVar});
but I want to have a named callback function, am I palcing the passed someVar correctly?
$('#div').click(someFunction(someVar));
function someFunction(someVar){}
|
When I have
but I want to have a named callback function, am I palcing the passed
|
||||
|
|
|
Both of your examples are wrong. Your first example creates a parameter to the callback method named The second example calls the method immediately, then passes its result to the You you need to pass a function expression that calls your function with a parameter from the outer scope (using a closure):
|
|||
|
|
|
The You have to call your function yourself within the callback function.
Alternatively, do:
|
|||
|
|
|
Look into passing the arguments as event data to the click event (or any event with jQuery): http://api.jquery.com/click/ |
|||
|
|