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.
var a = function init() { }? Also, your code example should end with}), not)}. – alex Feb 13 at 22:54