Hi,
I am trying to use getJSON to submit username and password to a webservice and alert "hi"
This is my code:
$.getJSON(address+"?format=json&jsoncallback=?", {CustomerEmail: email, Password: password},
function(){
alert("hi");
});
The http headers submit a 200 message so it should be OK but it does not enter the function, does anyone know why please?