I have:
var Init = (function() {
my js goes here
})();
And my js executes correctly when the page is loaded. I also have:
$('form :checkbox').change(function() {
Init();
});
But firebug says Init is not a function.
|
I have:
And my js executes correctly when the page is loaded. I also have:
But firebug says Init is not a function. |
||||
|
|
|
It isn't a function.
evaluates the anonymous function right then. And the result of the evaluation apparently does not return a function-object in this case :-) Consider:
and
Happy coding :) Here is a function which will "execute something once" and then "return that something to execute later". (See "You can either [assign] a function or call it; you can't do both..." from Slaks answer.) However, I wouldn't do it like this.
Here is another solution (much shorter/cleaner) from CD Sanchez (see comment) which takes advantage of the fact that an assignment evaluates to the assigned value:
|
|||||||||||||||
|
|
You can either create a function or call it; you can't do both at once. Technically, you could fix that by adding You probably shouldn't be calling the function; you need to understand what you want your code to do. |
|||||||||||||||||
|
|
In order for
|
|||
|
|
|
Quick one Try replacing like this
and on load call Init |
|||
|
|
you could do as above, but you could also do
There's nothing to stop you from having a named self-executing function. If you want to avoid having a function named Init, you can do as CD Sanchez suggested and assign it in the execution. The (); at the end makes it self executing. Wrapping the function in parentheses makes it anonymous. But it seems that you don't want it to be anonymous. |
|||
|
|
|
You may try declaring it this way:
But this will reduce usage of this function into it's body Other way is to separate declaration from execution:
|
|||||||||||||||||
|
|
How do you stop this self executing function? I'm using it in log viewer page that polls log continuously. But I want to give control to my users to stop it or stop this function from running any further when it has detects a marker. e.g. Build Successful. |
|||
|
|