I have a function defined inside a $('document').ready.

$('document').ready(function() {
  function visit(url) {
    $.ajax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        init();
      }
    });
  }

  function init() {
    ...
  }
)};

But when I call init() in Chrome Console I get : ReferenceError: init is not defined.

Update: Thank you all for your help. I didwindow.init = init; and it works perfectly.

link|improve this question

I don't understand the sense of defining a (non-anonimous) function inside the ready method. Just declare them outside and then call it when and where you need. – Aurelio De Rosa Feb 13 at 22:53
1  
That should work. Are you sure it's not var a = function init() { }? Also, your code example should end with }), not )}. – alex Feb 13 at 22:54
This should work. – Jan Kuča Feb 13 at 22:54
1  
This shouldn't work. The Chrome Inspector console has no access to the state within an anonymous closure. – Twisol Feb 13 at 23:01
2  
I forgot to read the last sentence. I shall go back to work now... :P – alex Feb 13 at 23:11
show 2 more comments
feedback

5 Answers

up vote 3 down vote accepted

Your init function is contained by the scope of the function you've passed to jQuery.ready. This is a good thing, it means you haven't created an unnecessary global.

If you need to export the function to the global scope, you can do so by explicitly assigning to a property on window, e.g.:

window.init = init;

Since window is the global object on browsers, that would allow you to call it from Chrome's console without the window. prefix. But only do that if absolutely necessary, the global scope is already crowded enough.

link|improve this answer
Thank you. It works. – Laura Feb 13 at 23:09
feedback

Function declarations, like your function init() {}, are restricted to the scope they're defined in. If you want to use init elsewhere, do this:

var init;
$('document').ready(function() {
    init = function() {};
});
link|improve this answer
1  
That doesn't apply here. That anonymous function has access to its parent's scope, and hoisting makes init available from the start of the scope. – alex Feb 13 at 22:56
@alex: Really? I just tested defining a function within another function, and it wasn't available outside the closure. – Twisol Feb 13 at 22:58
The OP's init function is defined within the DOM ready callback. – alex Feb 13 at 22:59
1  
@T.J. I seem to be forgetting to read the entire question. Carry on chaps :) – alex Feb 13 at 23:11
2  
@alex: Oh, I've never done that. Not even once. ;-) – T.J. Crowder Feb 13 at 23:15
show 7 more comments
feedback

I think you want to put your function definition outside the ready function, it is not necessary for the document to be ready to define a function even if the function references the document. Keep in mine the references inside a function are not performed until the function is actually executed, a function definition is just like defining a text constant. Use the following instead:

function visit(url) {
    $.pjax({
        url: url,
        container: '#maincontainer',
        success: function(data) {
        init();
        }
    });
}

function init() {
    ...
}

$(function () {
    init();
});
link|improve this answer
feedback

Try something like this:

$('document').ready(function() {

  var objScope = this;

  function visit(url) {
    $.pjax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        objScope.init();
      }
    });
  }

  function init() {
    ...
  }
)};
link|improve this answer
feedback

Functions are only defined the scope you define them in.

If you insist on this method, use init = funciton() syntax instead. This will create a global variable (since you're not going to put a var there) which can be referenced anywhere.

That said, defining functions can be done at any time, there is absolutely no point in putting them in .ready().

link|improve this answer
2  
"If you insist on this method, use init = funciton() syntax instead" OMG that's a bad suggestion. Use window.init = function..., perhaps, but never rely on The Horror of Implicit Globals‌​. – T.J. Crowder Feb 13 at 22:55
If you know what you are doing, implicit globals are perfectly acceptable. Most people, however, don't have the foggiest notion what they're doing. – Kolink Feb 13 at 22:56
@Kolink: If you know what you're doing, you don't need implicit globals. If you don't, they're a trap you're going to trip over. – T.J. Crowder Feb 13 at 22:57
1  
For one, they will fail in Strict Mode. Example. – alex Feb 13 at 22:58
True. I never use them myself, to be honest. – Kolink Feb 13 at 22:58
feedback

Your Answer

 
or
required, but never shown

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