synchronous ajax is not working:
var rslt = false;
$.ajax({
async: false,
url: url,
dataType: "json",
success: function(data) {
rslt = true;
}
});
document.write(rslt);
rslt still displays as false.
I am out of ideas...