Hi!
do you run the page through a local webserver (like
http://localhost/...
) or by using your local filesystem path (like file://C:/projects/...
) ?
If the latter, this would be the problem, because Javascript can't
access resources from the local filesystem (for security reasons). You
would need to run a webserver on your machine. I'm using XAMPP, it's
set up in a few seconds.
However, in any case: hit Ctrl + Shift + J in Chrome to launch the
javascript console, where you can see javascript errors and some debug
output. This will make it way easier. :)