Basically, using ajax with local resources doesn't work. Chrome and Safari has a restriction on using ajax with local resources. This error means that you are trying to perform Ajax on a local file. This is forbidden for security reasons. In order to solve this problem, you can use firefox or upload your data to a temporary server. If you still want to use Chrome, start it with the below option; --allow-file-access-from-files Also, this kind of trouble is now partially solved simply by using the following jQuery instruction: <script> $.support.cors = true; </script>
... View more