Skip to content Skip to sidebar Skip to footer

Connecting To External Server For Html5 App

I am using a form to submit and update my database sitting on an external server. When I place all the files on the same server (PHP and html), I am able to update without any issu

Solution 1:

You saying that even alert is not firing. Check if jQuery is loaded properly. Try changing while runing from localhost:

//code.jquery.com/jquery-1.11.3.min.js to http://code.jquery.com/jquery-1.11.3.min.js

That is because browser serving files localy doesn't know that it should load external libraries from web. Explicitly setting protocol will make him search for them not in the filesystem, but load via url.

Post a Comment for "Connecting To External Server For Html5 App"