The tcategories function is not available from the js file. What is the problem?
<html> <head> <script src="/all.js" type="text/javascript"></script> </head> <body> ... <script type="text/javascript"> function tcategories() { alert(1); } </script> </body> </html>
all.js:
setTimeout(function() {tcategories()}, 3000);
Console:
Uncaught ReferenceError: tcategories is not defined