When executing this get logic, it doesn't execute the lines inside until the rest of the page is loaded.
so the code hits the get... calls it. moves on to the rest of the page, then comes back and executes console.log and the internal user assignment.
why is that and how to I get it to execute that code before the rest of the page loads. I need that assignment during the remaining page load.
$.get(userUrl, function(data, status){
console.log ("Data: " + data + "\nStatus: " + status);
isInternalUser=data.isInternal;
});