I have a problem in call a function. My example:
jQuery(function($){
var testFunc = function(){
console.info('call jQuery testFunc');
}
});
function callJqueryTestFunc(){
testFunc(); // error - function not exists
}
Please, someone help me? Thank you very much