Skip to content

Instantly share code, notes, and snippets.

@ratulcse10
Created October 23, 2014 16:50
Show Gist options
  • Save ratulcse10/a311ccd76aa5335de1cb to your computer and use it in GitHub Desktop.
Save ratulcse10/a311ccd76aa5335de1cb to your computer and use it in GitHub Desktop.
$.ajax({
type : "POST",
url : "http://phonegap.sustcse10.net/gps_tracker/login_check.php",
data : $("#userLoginForm").serialize(),
}).done(function(data) {
for(var i in data)
{
var row = data[i];
}
if (row == "done"){
alert("ok");
}
else {
alert("Wrong UserID/Password !!");
}
}).error(function() {
alert ('No Server Response');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment