How do I make the myFunction visibile for the in-line function in .ready() event?
$(document).ready(function() {
...stuffs...
myFunction(par1, par2, anotherFucntion_callback);
}
);
function anotherFunction_callback(data) {
..stuffs..
}
|
|
How do I make the myFunction visibile for the in-line function in .ready() event?
|
|||
|
|
|
Hi. I didn't quite catch your question. Do you mean that you want to pass "myFunction_callback(data)" as the last argument in your:
, including that "data" parameter? In that case the solution is pretty standard, write this before that one:
an alternative syntax is:
In general, if you want to pass a function with 1 or more arguments to another function, you use that format. Here, we basically create a new no-argument function that calls another. The new function has access to the "data" variable. It's called "closure", you may want to read more on that. Of course, if the callback require no argument, you can just use the original function name. I hope this helps. ps: You can even inline the function declaration, making it anonymous, like so: myFunction(par1, par2, function() { myFunction_callback(data) }); Notice that the
looks pretty much just like that. |
|||
|
|
|
You use the actual name of the function, i.e. |
||
|