I have this code:
$(document).ready(function(){
var callPage = function(){
$.post('/pageToCall.php');
};
setInterval('callPage()', 60000);
});
and it gives me the error ReferenceError: Can't find variable: callPage. Why?
|
I have this code:
and it gives me the error |
|||||||
|
|
Try If you pass a string to There is hardly ever a reason to pass a string to |
|||||||||||
|
|
I suspect it's because callPage is a variable scoped to the anonymous function you're creating in the document.ready event. If you move the callPage definition outside that, does it work? |
|||
|
|
It happens because callPage's scope is the anonymous function |
|||
|
|